1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/monica_ynh.git synced 2024-09-03 19:46:23 +02:00

Merge pull request #4 from anmol26s/patch-1

Force https
This commit is contained in:
Sebastian Gumprich 2017-07-24 16:55:07 +02:00 committed by GitHub
commit 7f821cf8fb

View file

@ -2,7 +2,10 @@ location ^~ YNH_EXAMPLE_PATH {
alias YNH_WWW_PATH;
try_files $uri $uri/ @monica;
index index.php;
# Force https
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
}
location ~ \.php {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
fastcgi_pass unix:/run/php/php7.0-fpm.sock;