Files
ha.mr/nginx.conf
T
MMA f4188cfaa7 Add Docker Compose setup for local runs
Package the static site with nginx
2026-08-16 13:11:40 +03:00

11 lines
155 B
Nginx Configuration File

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