Dynastie/apache_dynastie.conf
Grégory Soutadé 0d05f8346b Do a cleaner package.
Add an Apache sample configuration file
Update README with better installation instructions
2014-02-02 14:21:16 +01:00

20 lines
466 B
Plaintext

<VirtualHost *>
ServerName dynastie.soutade.fr
DocumentRoot /home/soutade/dynastie/dynastie/
WSGIScriptAlias / /home/soutade/dynastie/dynastie/wsgi.py
Alias /static /home/soutade/dynastie/dynastie/static
<Directory /home/soutade/dynastie/dynastie>
<IfVersion < 2.3 >
Order allow,deny
Allow from all
</IfVersion>
<IfVersion >= 2.3>
Require all granted
</IfVersion>
</Directory>
</VirtualHost>