personal-site/nginx/nginx.config
Nicholas Orlowsky e993f5293c add nginx
2021-06-30 15:42:16 -04:00

9 lines
168 B
Plaintext

server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html =404;
}
}