diff --git a/conf/nginx.conf b/conf/nginx.conf index fe9dd53..d9e0102 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -4,15 +4,10 @@ location __PATH__/ { # Path to source alias __FINALPATH__/ ; -# if ($args !~* lang=__LANGUAGE__){ - # rewrite ^(.*)$ https://__DOMAIN____PATH_URL__/#/?lang=__LANGUAGE__ last; - # } - -#location __PATH__/static/ { - -# alias __FINALPATH__/static/ ; + if ($args !~* lang=__LANGUAGE__){ + rewrite ^(.*)$ https://__DOMAIN____PATH_URL__/#/?lang=__LANGUAGE__ last; } - + ### Example PHP configuration (remove it if not used) # index index.php; @@ -34,4 +29,9 @@ location ~ [^/]\.php(/|$) { # Include SSOWAT user panel. include conf.d/yunohost_panel.conf.inc; -} +} + +location __PATH__/static/ { + + alias __FINALPATH__/static/ ; + }