From 7c699e9942d7afe94d8f19f851ea0cceda1c5568 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Mon, 28 Jun 2021 08:31:09 +0200 Subject: [PATCH] Update nginx.conf --- conf/nginx.conf | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) 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; }