This commit is contained in:
2025-06-26 03:35:15 +00:00
parent 56fa52fd80
commit 59f287112f
2193 changed files with 289518 additions and 3540 deletions

View File

@@ -0,0 +1,15 @@
server {
listen 80;
server_name localhost;
root /static-files;
# Serve static files
location / {
try_files $uri $uri/ =404;
# Set proper content type for markdown files
location ~* \.md$ {
add_header Content-Type "text/markdown; charset=utf-8";
}
}
}