Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'certbot-apache/tests/apache-conf-files/passing/graphite-quote-1934.conf')
-rw-r--r--certbot-apache/tests/apache-conf-files/passing/graphite-quote-1934.conf21
1 files changed, 21 insertions, 0 deletions
diff --git a/certbot-apache/tests/apache-conf-files/passing/graphite-quote-1934.conf b/certbot-apache/tests/apache-conf-files/passing/graphite-quote-1934.conf
new file mode 100644
index 000000000..f257dd9a8
--- /dev/null
+++ b/certbot-apache/tests/apache-conf-files/passing/graphite-quote-1934.conf
@@ -0,0 +1,21 @@
+<VirtualHost *:80>
+
+ WSGIDaemonProcess _graphite processes=5 threads=5 display-name='%{GROUP}' inactivity-timeout=120 user=www-data group=www-data
+ 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>