mirror of
https://github.com/ZetaKebab/quartz.git
synced 2025-07-04 00:47:37 +00:00
13 lines
236 B
Plaintext
13 lines
236 B
Plaintext
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
server_name localhost;
|
|
|
|
root /usr/share/nginx/html;
|
|
index index.html
|
|
error_page 404 /404.html;
|
|
|
|
location / {
|
|
try_files $uri $uri.html $uri/ =404;
|
|
}
|
|
} |