8f115461e1
Signed-off-by: Thomas Citharel <tcit@tcit.fr> Run migrations on entrypoint Signed-off-by: Thomas Citharel <tcit@tcit.fr> Finalize Docker configuration Signed-off-by: Thomas Citharel <tcit@tcit.fr> turn on pretty urls Signed-off-by: Thomas Citharel <tcit@tcit.fr> Make framadate await database container Signed-off-by: Thomas Citharel <tcit@tcit.fr> Add missing rewrite rule to apache config Signed-off-by: Thomas Citharel <tcit@tcit.fr> Finalize Signed-off-by: Thomas Citharel <tcit@tcit.fr>
29 lines
569 B
Plaintext
29 lines
569 B
Plaintext
<VirtualHost *:80>
|
|
DocumentRoot /var/www/framadate
|
|
|
|
# URL rewrite
|
|
<Directory "/">
|
|
AllowOverride All
|
|
</Directory>
|
|
|
|
# Admin folder
|
|
<Directory "/var/www/framadate/admin/">
|
|
AuthType Basic
|
|
AuthName "Administration"
|
|
AuthUserFile "/var/www/framadate/admin/.htpasswd"
|
|
Require valid-user
|
|
</Directory>
|
|
|
|
# Protection fichiers htpasswd et htaccess
|
|
<FilesMatch "^\.ht.*">
|
|
Deny from all
|
|
Satisfy all
|
|
ErrorDocument 403 "Accès refusé."
|
|
</FilesMatch>
|
|
|
|
# Logs
|
|
ErrorLog /dev/stdout
|
|
CustomLog /dev/stdout combined
|
|
|
|
</VirtualHost>
|