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/ ; - } +}