Files
HangmanLab.Frontend/nginx.conf
2024-12-09 07:01:22 +00:00

13 lines
261 B
Nginx Configuration File

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