Files
test/docker/frontend/nginx.conf
Benjamin Falch 2bc741fb78
Some checks failed
Mark Stale PRs / stale (push) Has been cancelled
adding monkeytype
2026-04-23 13:53:44 +02:00

11 lines
175 B
Nginx Configuration File

server {
listen 80;
listen [::]:80;
server_name frontend;
location / {
root /usr/share/nginx/html;
try_files $uri $uri/ /index.html;
}
}