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/1626-1531.conf')
-rw-r--r--certbot-apache/tests/apache-conf-files/passing/1626-1531.conf37
1 files changed, 37 insertions, 0 deletions
diff --git a/certbot-apache/tests/apache-conf-files/passing/1626-1531.conf b/certbot-apache/tests/apache-conf-files/passing/1626-1531.conf
new file mode 100644
index 000000000..1622a57df
--- /dev/null
+++ b/certbot-apache/tests/apache-conf-files/passing/1626-1531.conf
@@ -0,0 +1,37 @@
+<VirtualHost *:80>
+ ServerAdmin denver@ossguy.com
+ ServerName c-beta.ossguy.com
+
+ Alias /robots.txt /home/denver/www/c-beta.ossguy.com/static/robots.txt
+ Alias /favicon.ico /home/denver/www/c-beta.ossguy.com/static/favicon.ico
+
+ AliasMatch /(.*\.css) /home/denver/www/c-beta.ossguy.com/static/$1
+ AliasMatch /(.*\.js) /home/denver/www/c-beta.ossguy.com/static/$1
+ AliasMatch /(.*\.png) /home/denver/www/c-beta.ossguy.com/static/$1
+ AliasMatch /(.*\.gif) /home/denver/www/c-beta.ossguy.com/static/$1
+ AliasMatch /(.*\.jpg) /home/denver/www/c-beta.ossguy.com/static/$1
+
+ WSGIScriptAlias / /home/denver/www/c-beta.ossguy.com/django.wsgi
+ WSGIDaemonProcess c-beta-ossguy user=www-data group=www-data home=/var/www processes=5 threads=10 maximum-requests=1000 umask=0007 display-name=c-beta-ossguy
+ WSGIProcessGroup c-beta-ossguy
+ WSGIApplicationGroup %{GLOBAL}
+
+ DocumentRoot /home/denver/www/c-beta.ossguy.com/static
+
+ <Directory /home/denver/www/c-beta.ossguy.com/static>
+ Options -Indexes +FollowSymLinks -MultiViews
+ Require all granted
+ AllowOverride None
+ </Directory>
+
+ <Directory /home/denver/www/c-beta.ossguy.com/static/source>
+ Options +Indexes +FollowSymLinks -MultiViews
+ Require all granted
+ AllowOverride None
+ </Directory>
+
+ # Custom log file locations
+ LogLevel warn
+ ErrorLog /tmp/error.log
+ CustomLog /tmp/access.log combined
+</VirtualHost>