ServerName default DocumentRoot /var/www/html ProxyPreserveHost On ProxyRequests Off ProxyPass /static/ ! ProxyPass /media/ ! # Pour utiliser un sous-dossier (typiquement /gestion/), il faut faire a la # place des lignes suivantes: # # RequestHeader set Daphne-Root-Path /gestion # ProxyPass /gestion/ws/ ws://127.0.0.1:8001/ws/ # ProxyPass /gestion http://127.0.0.1:8001/gestion # ProxyPassReverse /gestion http://127.0.0.1:8001/gestion # # Penser egalement a changer les /static/ et /media/ dans la config apache # ainsi que dans les settings django. ProxyPass /ws/ ws://127.0.0.1:8001/ws/ ProxyPass / http://127.0.0.1:8001/ ProxyPassReverse / http://127.0.0.1:8001/ Alias /media /vagrant/media Alias /static /var/www/static Order deny,allow Allow from all Order deny,allow Allow from all ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined # vim: syntax=apache ts=4 sw=4 sts=4 sr noet