9 lines
165 B
Plaintext
Executable File
9 lines
165 B
Plaintext
Executable File
server {
|
|
listen 8080;
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html index.htm;
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
} |