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

1626-1531.conf « passing « apache-conf-files « tests « certbot_apache « certbot-apache - github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1622a57df652b3e7e73bcde76261640f569de726 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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>