diff --git a/conf/nginx.conf b/conf/nginx.conf index 74de3aa..9fc1869 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -2,6 +2,11 @@ root __FINALPATH__/; index index.php; try_files $uri $uri/ /index.php?$args; +# Force usage of https + if ($scheme = http) { + rewrite ^ https://$server_name$request_uri? permanent; + } + location ~ \.php$ { try_files $uri =404; fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;