Files
salona/nginx.conf
farnoosh-krm 8ee18c218c (Fix) banners layout, update notifications behavior,
and update Dockerfile

(fix) - Adjusted banner sizes
(fix) - Notifications no longer show on mobile if already read
(feat) - Updated Dockerfile for proper build and deployment
2025-11-25 16:35:55 +03:30

9 lines
171 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;
}
}