reboot as pandoc-based markdown proj

This commit is contained in:
Matthew Ryan Dillon 2025-03-24 21:10:19 -04:00
parent c1e3bba6cf
commit 8882bbdc69
8 changed files with 110 additions and 140 deletions

16
default.conf Normal file
View file

@ -0,0 +1,16 @@
server {
listen 80;
listen [::]:80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri.html $uri/ =404;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}