From 4ab73dd97a0e86b175eb2930754c68fdca3106ed Mon Sep 17 00:00:00 2001 From: Melchisedech Date: Sun, 13 Mar 2022 01:02:51 +0100 Subject: [PATCH] Revert all --- conf/nginx.conf | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index d9e0102..7ff75b5 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -4,18 +4,14 @@ location __PATH__/ { # Path to source alias __FINALPATH__/ ; - if ($args !~* lang=__LANGUAGE__){ - rewrite ^(.*)$ https://__DOMAIN____PATH_URL__/#/?lang=__LANGUAGE__ last; - } - ### Example PHP configuration (remove it if not used) # index index.php; # Common parameter to increase upload size limit in conjunction with dedicated php-fpm file #client_max_body_size 50M; - -try_files $uri $uri/ index.php; -location ~ [^/]\.php(/|$) { + + try_files $uri $uri/ index.php; + location ~ [^/]\.php(/|$) { fastcgi_split_path_info ^(.+?\.php)(/.*)$; fastcgi_pass unix:/var/run/php/php__PHPVERSION__-fpm-__NAME__.sock; @@ -29,9 +25,4 @@ location ~ [^/]\.php(/|$) { # Include SSOWAT user panel. include conf.d/yunohost_panel.conf.inc; -} - -location __PATH__/static/ { - - alias __FINALPATH__/static/ ; - } +}