skantravels/Mobile/build/web/conf/app.conf

13 lines
327 B
Plaintext
Raw Normal View History

2024-08-05 08:00:16 +01:00
server {
listen 80;
root /usr/share/nginx/html;
# Enables Gzip compression for efficiency
gzip on;
gzip_types text/plain text/javascript text/css application/json;
# Handles routing for static files and serves index.html as a fallback
location / {
try_files $uri $uri/ /index.html;
}
}