2018-01-18 18:55:08 +01:00
|
|
|
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
|
|
|
location __PATH__/ {
|
2019-02-15 19:49:22 +01:00
|
|
|
|
2022-10-19 00:46:33 +02:00
|
|
|
# Path to source
|
|
|
|
alias __FINALPATH__/;
|
2019-02-15 19:49:22 +01:00
|
|
|
|
2022-10-19 00:46:33 +02:00
|
|
|
index index.php;
|
2023-01-12 17:26:58 +01:00
|
|
|
client_max_body_size 100M;
|
2015-10-20 15:44:33 +02:00
|
|
|
|
2022-10-19 00:46:33 +02:00
|
|
|
# Override CSP header to make SSOWAT user panel compatible with kanboard
|
|
|
|
more_set_headers "Content-Security-Policy: default-src 'self' 'unsafe-eval' data:; style-src 'self' 'unsafe-inline'";
|
2014-07-20 14:09:41 +02:00
|
|
|
|
2022-10-19 00:46:33 +02:00
|
|
|
location __PATH__/(?:kanboard|config.php|config.default.php) {
|
|
|
|
deny all;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Deny access to the directory data
|
|
|
|
location __PATH__/data {
|
|
|
|
deny all;
|
2020-10-30 15:08:59 +01:00
|
|
|
}
|
|
|
|
|
2022-10-19 00:46:33 +02:00
|
|
|
try_files $uri $uri/ __PATH__/index.php;
|
|
|
|
location ~ [^/]\.php(/|$) {
|
|
|
|
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
|
|
|
fastcgi_pass unix:/var/run/php/php__PHPVERSION__-fpm-__NAME__.sock;
|
2017-10-19 12:13:47 +02:00
|
|
|
|
2022-10-19 00:46:33 +02:00
|
|
|
fastcgi_index index.php;
|
|
|
|
include fastcgi_params;
|
|
|
|
fastcgi_param REMOTE_USER $remote_user;
|
|
|
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
|
|
|
fastcgi_param SCRIPT_FILENAME $request_filename;
|
|
|
|
fastcgi_param SERVER_NAME $host;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Include SSOWAT user panel.
|
|
|
|
include conf.d/yunohost_panel.conf.inc;
|
2017-10-19 12:13:47 +02:00
|
|
|
}
|