quartz-docker/default.conf.template

12 lines
220 B
Text
Raw Permalink Normal View History

2025-01-17 00:27:12 +00:00
server {
listen ${NGINX_PORT};
server_name ${SERVER_NAME};
2025-01-18 01:42:12 +00:00
root /quartz/src/public;
2025-01-17 00:27:12 +00:00
index index.html;
error_page 404 /404.html;
location / {
try_files $uri $uri.html $uri/ =404;
}
}