2019-05-03 20:04:21 +02:00
|
|
|
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
|
|
|
location __PATH__/ {
|
|
|
|
|
|
|
|
# Path to source
|
2017-06-03 16:37:08 +02:00
|
|
|
alias __FINALPATH__/;
|
2019-05-03 20:04:21 +02:00
|
|
|
|
|
|
|
# Force usage of https
|
2013-12-24 13:37:55 +01:00
|
|
|
if ($scheme = http) {
|
|
|
|
rewrite ^ https://$server_name$request_uri? permanent;
|
|
|
|
}
|
2019-05-03 20:04:21 +02:00
|
|
|
|
2013-12-24 13:37:55 +01:00
|
|
|
index index.php;
|
2019-05-03 20:04:21 +02:00
|
|
|
|
2013-12-24 13:37:55 +01:00
|
|
|
try_files $uri $uri/ index.php;
|
|
|
|
location ~ [^/]\.php(/|$) {
|
|
|
|
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
2020-10-09 17:41:34 +02:00
|
|
|
fastcgi_pass unix:/var/run/php/php__PHPVERSION__-fpm-__NAME__.sock;
|
2019-05-03 20:04:21 +02:00
|
|
|
|
2013-12-24 13:37:55 +01:00
|
|
|
fastcgi_index index.php;
|
|
|
|
include fastcgi_params;
|
2015-01-19 08:35:24 +01:00
|
|
|
fastcgi_param REMOTE_USER $remote_user;
|
|
|
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
|
|
|
fastcgi_param SCRIPT_FILENAME $request_filename;
|
2013-12-24 13:37:55 +01:00
|
|
|
}
|
2014-05-28 17:04:01 +02:00
|
|
|
|
|
|
|
# Include SSOWAT user panel.
|
|
|
|
include conf.d/yunohost_panel.conf.inc;
|
2013-12-24 13:37:55 +01:00
|
|
|
}
|