forked from certbot/certbot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request certbot#1945 from domcleal/1934-augeas-arg-quotes
Merge Augeas lens fix for quotes in directive arguments
- Loading branch information
Showing
2 changed files
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<VirtualHost *:80> | ||
|
||
WSGIDaemonProcess _graphite processes=5 threads=5 display-name='%{GROUP}' inactivity-timeout=120 user=_graphite group=_graphite | ||
WSGIProcessGroup _graphite | ||
WSGIImportScript /usr/share/graphite-web/graphite.wsgi process-group=_graphite application-group=%{GLOBAL} | ||
WSGIScriptAlias / /usr/share/graphite-web/graphite.wsgi | ||
|
||
Alias /content/ /usr/share/graphite-web/static/ | ||
<Location "/content/"> | ||
SetHandler None | ||
</Location> | ||
|
||
ErrorLog ${APACHE_LOG_DIR}/graphite-web_error.log | ||
|
||
# Possible values include: debug, info, notice, warn, error, crit, | ||
# alert, emerg. | ||
LogLevel warn | ||
|
||
CustomLog ${APACHE_LOG_DIR}/graphite-web_access.log combined | ||
|
||
</VirtualHost> |