File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ Optional variables
2121- ` flush ` : Set to ` true ` in order to flush data before ` loaddata ` . Depends on ` loaddata ` variable to be ` true ` .
2222- ` newrelic ` : New Relic license key. Omit to skip New Relic. Recommended to add a default in playbook.
2323- ` exclude ` : Additional pattern to exclude from sync, eg. ` media/ ` .
24+ - ` loglevel ` : Explicitly define an Apache log level, eg. ` loglevel=info ` .
2425
2526Required Configuration variables
2627--------------------------------
Original file line number Diff line number Diff line change @@ -15,6 +15,9 @@ WSGIScriptAlias / {{ conf.host_path }}/{{ conf.wsgi_script|default('index.wsgi')
1515
1616LimitRequestBody {{ conf.limit_request_body|default(10485760) }}
1717
18+ {% if loglevel is defined %} LogLevel {{ loglevel }}
19+ {% endif %}
20+
1821Alias /static/ {{ conf.host_path }}/static/
1922<Location " /static/" >
2023 Options -Indexes
Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ WSGIScriptAlias / {{ conf.host_path }}/{{ conf.wsgi_script|default('index.wsgi')
77
88LimitRequestBody {{ conf.limit_request_body|default(10485760) }}
99
10+ {% if loglevel is defined %} LogLevel {{ loglevel }}
11+ {% endif %}
12+
1013Alias /static/ {{ conf.host_path }}/static/
1114<Location " /static/" >
1215 Options -Indexes
You can’t perform that action at this time.
0 commit comments