diff --git a/conf/nginx.conf b/conf/nginx.conf index cdfa416..336733b 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -4,21 +4,13 @@ location __PATH__/ { # Path to source alias __FINALPATH__/ ; - # Example PHP configuration (remove if not used) - index index.html; - - try_files $uri $uri/ index.php; - location ~ [^/]\.php(/|$) { - fastcgi_split_path_info ^(.+?\.php)(/.*)$; - fastcgi_pass unix:/var/run/php__PHPVERSION__-fpm__NAME__.sock; - - fastcgi_index index.php; - include fastcgi_params; - fastcgi_param REMOTE_USER $remote_user; - fastcgi_param PATH_INFO $fastcgi_path_info; - fastcgi_param SCRIPT_FILENAME $request_filename; + # Force usage of https + if ($scheme = http) { + rewrite ^ https://$server_name$request_uri? permanent; } + index index.html; + # Include SSOWAT user panel. include conf.d/yunohost_panel.conf.inc; }