Go to most recent revision | Details | 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 | |||
23 | ErrorLog ${APACHE_LOG_DIR}/idreammicro_error.log |
||
24 | |||
25 | # Possible values include: debug, info, notice, warn, error, crit, |
||
26 | # alert, emerg. |
||
27 | LogLevel warn |
||
28 | |||
29 | CustomLog ${APACHE_LOG_DIR}/idreammicro_access.log combined |
||
30 | |||
31 | </VirtualHost> |