2019-03-03 18:12:41 +01:00
|
|
|
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
|
|
|
location __PATH__/ {
|
2016-03-28 22:14:19 +02:00
|
|
|
|
2019-03-03 18:12:41 +01:00
|
|
|
# Path to source
|
|
|
|
alias __FINALPATH__/ ;
|
|
|
|
|
2016-03-28 22:14:19 +02:00
|
|
|
index index.php;
|
2022-08-17 11:13:14 +02:00
|
|
|
client_max_body_size 50M;
|
2016-03-28 22:14:19 +02:00
|
|
|
try_files $uri $uri/ /index.php?q=$uri&$args;
|
|
|
|
|
|
|
|
# pass PHP scripts to FastCGI server
|
|
|
|
location ~ [^/]\.php(/|$) {
|
|
|
|
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
|
|
|
|
2020-11-27 22:20:55 +01:00
|
|
|
fastcgi_pass unix:/var/run/php/php__PHPVERSION__-fpm-__NAME__.sock;
|
2016-03-28 22:14:19 +02:00
|
|
|
fastcgi_index index.php;
|
|
|
|
fastcgi_param REMOTE_USER $remote_user;
|
|
|
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
|
|
|
fastcgi_param SCRIPT_FILENAME $request_filename;
|
|
|
|
include fastcgi_params;
|
|
|
|
}
|
|
|
|
|
2019-03-03 18:12:41 +01:00
|
|
|
# show YunoHost panel access
|
2016-03-28 22:14:19 +02:00
|
|
|
include conf.d/yunohost_panel.conf.inc;
|
|
|
|
}
|
|
|
|
|
|
|
|
# prevent useless logs
|
2017-06-02 17:15:57 +02:00
|
|
|
location __PATH__/favicon.ico {
|
2016-03-28 22:14:19 +02:00
|
|
|
access_log off;
|
|
|
|
log_not_found off;
|
|
|
|
}
|
|
|
|
|
|
|
|
# deny access to sensitive files
|
2017-06-02 17:15:57 +02:00
|
|
|
location ~ ^__PATH__/(config|temp|logs)/ {
|
2016-03-28 22:14:19 +02:00
|
|
|
deny all;
|
|
|
|
}
|
2020-11-27 22:20:55 +01:00
|
|
|
|
2017-06-02 17:15:57 +02:00
|
|
|
location ~ ^__PATH__/(.+/|)\. {
|
2016-03-28 22:14:19 +02:00
|
|
|
deny all;
|
|
|
|
}
|