docs: add initial Mediary user guide

This commit is contained in:
2026-08-01 10:10:28 +02:00
commit a915c44d49
20 changed files with 511 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ $uri.html =404;
}
location ~* \.(?:css|js|svg|png|jpg|jpeg|webp|ico|woff2?)$ {
expires 7d;
add_header Cache-Control "public, immutable";
try_files $uri =404;
}
}