11 lines
234 B
Nginx Configuration File
11 lines
234 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
gzip on;
|
|
gzip_types text/plain text/css application/json application/javascript;
|
|
}
|