35 lines
689 B
Nginx Configuration File
35 lines
689 B
Nginx Configuration File
events {
|
|
worker_connections 1024; ## Default: 1024
|
|
}
|
|
|
|
http {
|
|
## use mime types
|
|
include /etc/nginx/mime.types;
|
|
server {
|
|
listen 80;
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
## without this our .css are not loaded
|
|
try_files $uri $uri/ /index.html?$query_string;
|
|
}
|
|
}
|
|
|
|
## enable gzip compression
|
|
gzip on;
|
|
gzip_vary on;
|
|
gzip_min_length 256;
|
|
gzip_proxied any;
|
|
|
|
gzip_types
|
|
text/plain
|
|
text/css
|
|
text/javascript
|
|
application/javascript
|
|
application/x-javascript
|
|
application/xml
|
|
application/json
|
|
application/ld+json;
|
|
}
|