17 lines
303 B
Nginx Configuration File
17 lines
303 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name _;
|
|
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
# gzip för statiska assets
|
|
gzip on;
|
|
gzip_types text/plain text/css application/javascript application/json image/svg+xml;
|
|
|
|
# Single Page App fallback
|
|
location / {
|
|
try_files $uri /index.html;
|
|
}
|
|
}
|