public
Description: A Django Based Blog
Homepage: http://altmansoftware.lighthouseapp.com/projects/19962-shiftingbits
Clone URL: git://github.com/paltman/shiftingbits.git
shiftingbits / web.conf
100644 27 lines (20 sloc) 0.862 kb
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
<VirtualHost *>
        ServerAdmin paltman+server@gmail.com
        ServerName paltman.com
        ServerAlias paltman.com
        Options FollowSymLinks
       
        Alias /media /var/www/paltman.com-sb/shiftingbits/shiftingbits/media/
 
        <Location /media>
          Order allow,deny
          Allow from all
        </Location>
        
        WSGIScriptAlias / /var/www/paltman.com-sb/shiftingbits/wsgi_handler.py
        WSGIDaemonProcess shiftingbits user=www-data group=www-data processes=1 threads=15
        WSGIProcessGroup shiftingbits
       
        ErrorLog /var/log/apache2/paltman.com-sb/error.log
 
        # Possible values include: debug, info, notice, warn, error, crit,
        # alert, emerg.
        LogLevel warn
 
        CustomLog /var/log/apache2/paltman.com-sb/access.log combined
        ServerSignature Off
</VirtualHost>