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;
|
|
|
|
}
|
2024-08-13 12:29:01 +01:00
|
|
|
}
|