Update nginx.conf
Browse files- nginx.conf +5 -0
nginx.conf
CHANGED
|
@@ -6,6 +6,11 @@ server {
|
|
| 6 |
|
| 7 |
resolver 1.1.1.1;
|
| 8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
location /badapple {
|
| 10 |
root /usr/share/nginx/html/templates/badapple/;
|
| 11 |
index index.html index.htm;
|
|
|
|
| 6 |
|
| 7 |
resolver 1.1.1.1;
|
| 8 |
|
| 9 |
+
location / {
|
| 10 |
+
root /usr/share/nginx/html/;
|
| 11 |
+
index index.html index.htm;
|
| 12 |
+
}
|
| 13 |
+
|
| 14 |
location /badapple {
|
| 15 |
root /usr/share/nginx/html/templates/badapple/;
|
| 16 |
index index.html index.htm;
|