remove rx300 leftovers

This commit is contained in:
Franzi 2023-12-13 21:22:45 +01:00
parent 9a026b1fd9
commit 5b19b2052d
Signed by: kunsi
GPG key ID: 12E3D2136B818350
7 changed files with 0 additions and 94 deletions

View file

@ -1,15 +0,0 @@
gzip on;
gzip_vary on;
gzip_min_length 10240;
gzip_proxied expired no-cache no-store private auth;
gzip_types text/plain text/css text/xml text/javascript application/x-javascript application/xml image/svg+xml;
location /css/ {
expires 7d;
add_header Cache-Control "public, no-transform";
}
location /img/ {
expires 30d;
add_header Cache-Control "public, no-transform";
}

View file

@ -1,5 +0,0 @@
autoindex on;
location = / {
autoindex off;
}

View file

@ -1,12 +0,0 @@
location ~ /(data|conf|bin|inc|vendor)/ {
deny all;
}
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;
}