2020-03-24 22:00:45 +01:00
|
|
|
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
|
|
|
location __PATH__/ {
|
2020-11-01 16:00:22 +01:00
|
|
|
|
2018-06-25 05:57:41 +02:00
|
|
|
# Path to source
|
2022-07-22 00:47:28 +02:00
|
|
|
alias __FINALPATH__/;
|
2020-11-01 16:00:22 +01:00
|
|
|
|
2020-11-24 23:40:11 +01:00
|
|
|
index index.php;
|
2020-11-01 16:00:22 +01:00
|
|
|
|
2020-12-01 12:14:47 +01:00
|
|
|
if (!-f $request_filename) {
|
2022-07-22 00:47:28 +02:00
|
|
|
rewrite ^ __PATH__/index.php last;
|
|
|
|
}
|
2020-12-02 09:18:40 +01:00
|
|
|
|
|
|
|
client_max_body_size 50M;
|
|
|
|
try_files $uri $uri/ index.php$is_args$args;
|
2020-11-01 16:00:22 +01:00
|
|
|
|
2013-12-19 03:02:51 +01:00
|
|
|
location ~ [^/]\.php(/|$) {
|
2022-07-22 00:47:28 +02:00
|
|
|
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
|
|
|
fastcgi_pass unix:/var/run/php/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;
|
2020-11-24 23:40:11 +01:00
|
|
|
fastcgi_param SCRIPT_FILENAME $request_filename;
|
2013-12-19 03:02:51 +01:00
|
|
|
}
|
2014-05-29 15:30:21 +02:00
|
|
|
|
|
|
|
# Include SSOWAT user panel.
|
|
|
|
include conf.d/yunohost_panel.conf.inc;
|
2013-12-19 03:02:51 +01:00
|
|
|
}
|