2020-06-11 13:46:00 +02:00
|
|
|
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
|
|
|
location ^~ __PATH__/ {
|
|
|
|
|
|
|
|
# Path to source
|
2018-05-28 14:24:43 +02:00
|
|
|
alias __FINALPATH__/public/;
|
2020-06-11 13:46:00 +02:00
|
|
|
|
|
|
|
# Force usage of https
|
2017-07-24 08:44:22 +02:00
|
|
|
if ($scheme = http) {
|
|
|
|
rewrite ^ https://$server_name$request_uri? permanent;
|
|
|
|
}
|
2020-06-11 13:46:00 +02:00
|
|
|
|
|
|
|
index index.php;
|
|
|
|
|
|
|
|
# Common parameter to increase upload size limit in conjunction with dedicated php-fpm file
|
|
|
|
#client_max_body_size 50M;
|
|
|
|
|
|
|
|
try_files $uri $uri/ @monica;
|
2017-06-12 22:24:37 +02:00
|
|
|
location ~ \.php {
|
|
|
|
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
2020-06-11 03:13:15 +02:00
|
|
|
fastcgi_pass unix:/var/run/php/php__PHPVERSION__-fpm-__NAME__.sock;
|
|
|
|
|
2017-06-12 22:24:37 +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;
|
|
|
|
}
|
2020-06-11 23:03:19 +02:00
|
|
|
|
|
|
|
# Include SSOWAT user panel.
|
|
|
|
include conf.d/yunohost_panel.conf.inc;
|
2017-06-08 13:32:01 +02:00
|
|
|
}
|
|
|
|
|
2017-06-12 22:24:37 +02:00
|
|
|
location @monica {
|
2019-05-21 22:58:44 +02:00
|
|
|
# Redirect .well-known urls (https://en.wikipedia.org/wiki/List_of_/.well-known/_services_offered_by_webservers)
|
|
|
|
rewrite .well-known/carddav __PATH__/dav/ permanent;
|
|
|
|
rewrite .well-known/caldav __PATH__/dav/ permanent;
|
|
|
|
rewrite .well-known/security.txt$ __PATH__/security.txt permanent;
|
|
|
|
|
|
|
|
# Old carddav url
|
|
|
|
rewrite carddav/(.*) __PATH__/dav/$1 permanent;
|
|
|
|
|
|
|
|
# rewrite all to index.php
|
|
|
|
rewrite ^(.*)$ __PATH__/index.php/$1 last;
|
2017-06-08 13:32:01 +02:00
|
|
|
}
|