forked from Ivasoft/geovisio-website
28 lines
435 B
Nginx Configuration File
28 lines
435 B
Nginx Configuration File
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
include mime.types;
|
|
sendfile on;
|
|
|
|
server {
|
|
listen 3000;
|
|
listen [::]:3000;
|
|
|
|
resolver 127.0.0.11;
|
|
autoindex off;
|
|
|
|
server_name _;
|
|
server_tokens off;
|
|
|
|
root /usr/share/nginx/html;
|
|
gzip_static on;
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
try_files $uri /index.html;
|
|
}
|
|
}
|
|
}
|