Update nginx.conf.template
Browse files- nginx.conf.template +2 -2
nginx.conf.template
CHANGED
|
@@ -1,9 +1,9 @@
|
|
| 1 |
server {
|
| 2 |
-
listen 8089;
|
| 3 |
|
| 4 |
location / {
|
| 5 |
root /usr/share/nginx/html;
|
| 6 |
-
index index.html
|
| 7 |
try_files $uri $uri/ =404;
|
| 8 |
}
|
| 9 |
}
|
|
|
|
| 1 |
server {
|
| 2 |
+
listen 0.0.0.0:8089;
|
| 3 |
|
| 4 |
location / {
|
| 5 |
root /usr/share/nginx/html;
|
| 6 |
+
index index.html;
|
| 7 |
try_files $uri $uri/ =404;
|
| 8 |
}
|
| 9 |
}
|