mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 13:59:02 -04:00
Part of #7593. * Refactor tests out of packaged module for apache plugin * Exclude pycache and .py[cod] * Change tests path in tox.ini
37 lines
1.6 KiB
Text
37 lines
1.6 KiB
Text
<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>
|