11 lines
183 B
Plaintext
Executable File
11 lines
183 B
Plaintext
Executable File
server {
|
|
server_name _;
|
|
listen 80;
|
|
root /usr/share/nginx/html;
|
|
index index.html index.htm;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
}
|