9 lines
184 B
Nginx Configuration File
9 lines
184 B
Nginx Configuration File
server_tokens off;
|
|
server {
|
|
listen 80;
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html index.htm;
|
|
try_files $uri /index.html;
|
|
}
|
|
} |