Rev 4 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
4 | jlesech | 1 | <VirtualHost *:80> |
2 | |||
3 | ServerName django |
||
4 | ServerAlias django |
||
5 | |||
6 | DocumentRoot /home/jlesech/www-django/idreammicro |
||
7 | |||
8 | <Directory /home/jlesech/www-django/idreammicro> |
||
9 | Order allow,deny |
||
10 | Allow from all |
||
11 | </Directory> |
||
12 | |||
13 | WSGIDaemonProcess django processes=2 threads=15 display-name=%{GROUP} python-path=/home/jlesech/www-django/idreammicro |
||
14 | WSGIProcessGroup django |
||
15 | |||
16 | WSGIScriptAlias / /home/jlesech/www-django/idreammicro/idreammicro/wsgi.py |
||
17 | |||
18 | <Directory /home/jlesech/www-django/idreammicro/idreammicro> |
||
19 | Order allow,deny |
||
20 | Allow from all |
||
21 | </Directory> |
||
22 | |||
5 | jlesech | 23 | Alias /static/ /home/jlesech/www-django/idreammicro/static/ |
24 | <Location "/static/"> |
||
25 | Options -Indexes |
||
26 | </Location> |
||
27 | |||
4 | jlesech | 28 | ErrorLog ${APACHE_LOG_DIR}/idreammicro_error.log |
29 | |||
30 | # Possible values include: debug, info, notice, warn, error, crit, |
||
31 | # alert, emerg. |
||
32 | LogLevel warn |
||
33 | |||
34 | CustomLog ${APACHE_LOG_DIR}/idreammicro_access.log combined |
||
35 | |||
36 | </VirtualHost> |