2020-05-29 18:46:42 +02:00
|
|
|
# Config inspired by :
|
|
|
|
# https://www.nginx.com/resources/wiki/start/topics/recipes/mediawiki/
|
|
|
|
|
2020-06-10 15:52:08 +02:00
|
|
|
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
2019-02-27 23:52:47 +01:00
|
|
|
location __PATH__/ {
|
2020-05-29 18:46:42 +02:00
|
|
|
|
|
|
|
# Path to source
|
2019-02-27 23:52:47 +01:00
|
|
|
alias __FINALPATH__/ ;
|
2020-05-29 18:46:42 +02:00
|
|
|
|
|
|
|
# Force usage of https
|
2019-02-27 23:52:47 +01:00
|
|
|
if ($scheme = http) {
|
|
|
|
rewrite ^ https://$server_name$request_uri? permanent;
|
|
|
|
}
|
|
|
|
|
|
|
|
index index.php;
|
2019-07-27 22:09:37 +02:00
|
|
|
|
2021-05-19 19:22:16 +02:00
|
|
|
try_files $uri $uri/ @rewrite___NAME__;
|
|
|
|
|
2019-02-27 23:52:47 +01:00
|
|
|
location ~ [^/]\.php(/|$) {
|
|
|
|
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
2020-05-29 18:46:42 +02:00
|
|
|
fastcgi_pass unix:/var/run/php/php__PHPVERSION__-fpm-__NAME__.sock;
|
|
|
|
|
2019-02-27 23:52:47 +01:00
|
|
|
fastcgi_index index.php;
|
|
|
|
include fastcgi_params;
|
2020-05-29 18:46:42 +02:00
|
|
|
fastcgi_param HTTPS on if_not_empty;
|
|
|
|
fastcgi_param REMOTE_USER $remote_user;
|
|
|
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
|
|
|
fastcgi_param SCRIPT_FILENAME $request_filename;
|
|
|
|
}
|
|
|
|
|
|
|
|
location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
|
|
|
|
try_files $uri /index.php;
|
|
|
|
expires max;
|
|
|
|
log_not_found off;
|
|
|
|
}
|
|
|
|
|
2021-05-19 19:22:16 +02:00
|
|
|
location = __PATH__/_.gif {
|
|
|
|
expires max;
|
|
|
|
empty_gif;
|
|
|
|
}
|
|
|
|
|
2020-05-29 18:46:42 +02:00
|
|
|
location ^~ __PATH__/cache/ {
|
|
|
|
deny all;
|
|
|
|
}
|
|
|
|
|
|
|
|
location ^~ __PATH__/maintenance/ {
|
|
|
|
return 403;
|
2019-02-27 23:52:47 +01:00
|
|
|
}
|
|
|
|
|
2020-05-29 18:46:42 +02:00
|
|
|
# Include SSOWAT user panel.
|
2019-02-27 23:52:47 +01:00
|
|
|
include conf.d/yunohost_panel.conf.inc;
|
2014-12-03 11:52:56 +01:00
|
|
|
}
|
2021-05-19 19:22:16 +02:00
|
|
|
|
|
|
|
location @rewrite___NAME__ {
|
|
|
|
rewrite ^/__PATH__/(.*)$ /__PATH__/index.php?title=$1&$args;
|
|
|
|
}
|