2020-07-08 17:31:37 +02:00
|
|
|
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
|
|
|
location __PATH__/ {
|
2018-02-19 22:23:03 +01:00
|
|
|
|
|
|
|
# Path to source
|
|
|
|
alias __FINALPATH__/ ;
|
|
|
|
|
|
|
|
if ($scheme = http) {
|
|
|
|
rewrite ^ https://$server_name$request_uri? permanent;
|
|
|
|
}
|
|
|
|
|
|
|
|
index index.php;
|
|
|
|
try_files $uri $uri/ /owntracks/index.php?$args;
|
|
|
|
|
|
|
|
# Prevent useless logs
|
2018-02-19 22:50:59 +01:00
|
|
|
location = __PATH__/favicon.ico {
|
2018-02-19 22:23:03 +01:00
|
|
|
log_not_found off;
|
|
|
|
access_log off;
|
|
|
|
}
|
2018-02-19 22:50:59 +01:00
|
|
|
location = __PATH__/robots.txt {
|
2018-02-19 22:23:03 +01:00
|
|
|
allow all;
|
|
|
|
log_not_found off;
|
|
|
|
access_log off;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Deny access to hidden files and directories
|
|
|
|
location ~ ^/__PATH__/(.+/|)\.(?!well-known\/) {
|
|
|
|
deny all;
|
|
|
|
}
|
|
|
|
|
|
|
|
location ~ [^/]\.php(/|$) {
|
|
|
|
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
2021-07-24 08:28:46 +02:00
|
|
|
fastcgi_pass unix:/var/run/php/php__PHPVERSION__-fpm-__NAME__.sock;
|
2018-02-19 22:23:03 +01: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;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Include SSOWAT user panel.
|
|
|
|
include conf.d/yunohost_panel.conf.inc;
|
|
|
|
}
|