Skip to content

Commit

Permalink
Make apache ServerAdmin email configurable (#1086)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmontalvo3 authored Dec 14, 2018
1 parent 91dc292 commit 073a64f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions config/core/defaults.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ m_db_replication_dump_file: /opt/data-meza/db_master_for_replication.sql
m_db_replication_log_file: /opt/data-meza/db_master_log_file
m_db_replication_log_pos: /opt/data-meza/db_master_log_pos


m_httpd_server_admin: "admin@example.com"
m_timezone: "America/Chicago"

meza_server_log_db: meza_server_log
Expand Down Expand Up @@ -225,7 +225,7 @@ php_opcache_memory_consumption: 256
php_opcache_interned_strings_buffer: 16

# The amount of input variables that may be accepted
php_max_input_vars: 2000
php_max_input_vars: 2000

# It's important for this number to be greater than the number of PHP files on a
# server.
Expand Down
2 changes: 1 addition & 1 deletion src/roles/apache-php/templates/httpd.conf.j2
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Group apache
# e-mailed. This address appears on some server-generated pages, such
# as error documents. e.g. admin@your-domain.com
#
ServerAdmin you@example.com
ServerAdmin {{ m_httpd_server_admin }}

#
# ServerName gives the name and port that the server uses to identify itself.
Expand Down

0 comments on commit 073a64f

Please sign in to comment.