2020-10-18 17:30:23 +00:00
|
|
|
location ~ /(data|conf|bin|inc|vendor)/ {
|
2021-02-17 09:56:18 +00:00
|
|
|
deny all;
|
2020-10-18 17:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
location / { try_files $uri $uri/ @dokuwiki; }
|
|
|
|
|
|
|
|
location @dokuwiki {
|
|
|
|
rewrite ^/_media/(.*) /lib/exe/fetch.php?media=$1 last;
|
|
|
|
rewrite ^/_detail/(.*) /lib/exe/detail.php?media=$1 last;
|
|
|
|
rewrite ^/_export/([^/]+)/(.*) /doku.php?do=export_$1&id=$2 last;
|
|
|
|
rewrite ^/(.*) /doku.php?id=$1&$args last;
|
|
|
|
}
|