2018-02-04 14:13:18 +01:00
|
|
|
#
|
|
|
|
# This file is managed by Salt! Do not edit by hand!
|
|
|
|
#
|
2017-03-29 12:32:18 +02:00
|
|
|
{%- from "apache/map.jinja" import apache with context -%}
|
2017-01-05 12:32:44 +01:00
|
|
|
|
|
|
|
# envvars - default environment variables for apache2ctl
|
|
|
|
|
|
|
|
# this won't be correct after changing uid
|
|
|
|
unset HOME
|
|
|
|
|
2017-01-06 17:54:07 +01:00
|
|
|
APACHE_CONFDIR=/usr/local/etc/apache24
|
2017-01-05 12:32:44 +01:00
|
|
|
|
2017-03-29 12:32:18 +02:00
|
|
|
export APACHE_RUN_USER={{ apache.user }}
|
|
|
|
export APACHE_RUN_GROUP={{ apache.group }}
|
2017-01-06 17:54:07 +01:00
|
|
|
export APACHE_RUN_DIR={{ salt['pillar.get']('apache:run_dir', '/var/run') }}
|
2017-01-05 12:32:44 +01:00
|
|
|
|
|
|
|
## The locale used by some modules like mod_dav
|
2017-01-06 17:54:07 +01:00
|
|
|
export LANG=en_US.UTF-8
|
2017-01-05 12:32:44 +01:00
|
|
|
|
|
|
|
{%- for envvar in salt['pillar.get']('apache:envvars', []) %}
|
|
|
|
{{ envvar }}
|
|
|
|
{%- endfor %}
|