Files
monitor-im-flur/nginx.conf
Arif Hasanic 01a8f18bae
All checks were successful
CI / build (push) Successful in 13s
CI / lint (push) Successful in 8s
CI / build-and-push-docker (push) Successful in 20s
add nginx file to docker container
2025-08-30 23:04:01 +02:00

28 lines
520 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 _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg)$ {
expires 1y;
log_not_found off;
}
}
}