15 lines
266 B
Nginx Configuration File
15 lines
266 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
location / {
|
|
try_files $uri /index.html;
|
|
}
|
|
|
|
# Optional: gzip
|
|
gzip on;
|
|
gzip_types text/plain application/javascript text/css application/json image/svg+xml;
|
|
}
|