Files
monitor-im-flur/nginx.conf
Arif Hasanic ae4b2b6179
Some checks failed
CI / build (push) Successful in 12s
CI / lint (push) Successful in 8s
CI / build-and-push-docker (push) Failing after 11s
fix dockerfile
2025-08-29 14:27:38 +02:00

28 lines
543 B
Nginx Configuration File

worker_processes 1;
events { worker_connections 1024; }
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
}