DocumentRoot /var/www/grav/ # Gestion des alias sur le serveur # Alias pour l'accès au géstionnaire de base de donné MySQL. Alias /phpmyadmin /usr/share/phpmyadmin # Alias des media et des fichiers statiques de NoethysWeb Alias /media /var/www/site/noethysweb/media Alias /static /var/www/site/noethysweb/static # Alias de la racine du Site créé avec le CMS GRAV (Optionnel) Alias / /var/www/grav/ # ProxyPreserveHost permet de servir NoethysWeb tel qu'il est exposé par Django ProxyPreserveHost On # Cette route permet la transmission du captcha via apache. ProxyPass /captcha http://localhost:8000/captcha # Routes spécifiques correspondantes aux URLS paramétrées dans le fichier settings.production.py ProxyPass /utilisateur http://localhost:8000/utilisateur ProxyPassReverse /utilisateur http://localhost:8000/utilisateur ProxyPass /administrateur http://localhost:8000/administrateur ProxyPassReverse /administrateur http://localhost:8000/administrateur ProxyPass /portail http://localhost:8000/portail ProxyPassReverse /portail http://localhost:8000/portail # Route spécifique à l'outil de gestion des tableaux. ProxyPass /select2/fields http://localhost:8000/select2/fields ProxyPassReverse /select2/fields http://localhost:8000/select2/fields # Route avertissant l'utilisateur qu'il est bloqué. ProxyPass /locked http://localhost:8000/locked ProxyPassReverse /locked http://localhost:8000/locked ServerAdmin webmaster@localhost Require all granted Require all granted Require all granted Options FollowSymlinks AllowOverride all Allow from all Require all granted Options SymLinksIfOwnerMatch DirectoryIndex index.php Require all denied Require all denied Require all granted Options FollowSymlinks AllowOverride all ErrorLog ${APACHE_LOG_DIR}/error_grav.log CustomLog ${APACHE_LOG_DIR}/access_grav.log combined ServerName www.mon_association.fr SSLCertificateFile /etc/letsencrypt/live/polygones-lentilly.fr/fullchain.pem SSLCertificateKeyFile /etc/letsencrypt/live/polygones-lentilly.fr/privkey.pem Include /etc/letsencrypt/options-ssl-apache.conf