17 lines
353 B
Plaintext
17 lines
353 B
Plaintext
<VirtualHost *:8000>
|
|
ServerName denote.soutade.fr
|
|
|
|
DocumentRoot /var/www/denote/denote
|
|
|
|
WSGIDaemonProcess django-denote
|
|
WSGIProcessGroup django-denote
|
|
WSGIScriptAlias / /var/www/denote/denote/wsgi.py
|
|
|
|
Alias /static /var/www/denote/denote/static
|
|
|
|
<Directory />
|
|
Options +FollowSymLinks +ExecCGI
|
|
Require all granted
|
|
</Directory>
|
|
</VirtualHost>
|