Files
test-app/nginx.conf
2026-02-20 12:12:17 +00:00

9 lines
145 B
Nginx Configuration File

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