mirror of
https://github.com/certbot/certbot.git
synced 2026-07-28 16:54:59 +02:00
30 lines
712 B
Plaintext
30 lines
712 B
Plaintext
server {
|
|
server_name wiki.domain.tld;
|
|
root /var/www/dokuwiki;
|
|
|
|
location / {
|
|
index doku.php;
|
|
try_files $uri $uri/ @dokuwiki;
|
|
}
|
|
|
|
location ~ ^/lib.*\.(gif|png|ico|jpg)$ {
|
|
expires 30d;
|
|
}
|
|
|
|
location ^~ /conf/ { return 403; }
|
|
location ^~ /data/ { return 403; }
|
|
|
|
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 last;
|
|
}
|
|
|
|
location ~ \.php$ {
|
|
include fastcgi_params;
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
fastcgi_pass unix:/tmp/phpcgi.socket;
|
|
}
|
|
}
|