cs-2022-class-profile/staging-nginx.conf

10 lines
197 B
Plaintext
Raw Normal View History

2022-07-01 14:46:44 -04:00
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
error_page 404 /index.html;
2022-07-01 14:50:18 -04:00
}