Create nginx.conf
Browse files- nginx.conf +13 -0
nginx.conf
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
events { }
|
| 2 |
+
|
| 3 |
+
http {
|
| 4 |
+
server {
|
| 5 |
+
listen 80;
|
| 6 |
+
server_name localhost;
|
| 7 |
+
|
| 8 |
+
location / {
|
| 9 |
+
root /usr/share/nginx/html;
|
| 10 |
+
index index.html;
|
| 11 |
+
}
|
| 12 |
+
}
|
| 13 |
+
}
|