Files
productclients/nginx.conf
LukasJuraczka e9a5db619b
All checks were successful
Angular Build & Deploy / deploy (push) Successful in 2m3s
build-deploy workflow hinzugefügt.
2025-12-30 15:01:31 +01:00

17 lines
310 B
Nginx Configuration File

server {
listen 80;
server_name localhost;
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;
add_header Cache-Control "public, immutable";
}
}