17 lines
286 B
Nginx Configuration File
17 lines
286 B
Nginx Configuration File
events{}
|
|
|
|
http {
|
|
include mime.types;
|
|
|
|
server {
|
|
listen 80;
|
|
root /usr/share/nginx/html;
|
|
|
|
gzip on;
|
|
gzip_types text/plain text/javascript text/css application/json;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
}
|
|
} |