Initial commit
[ta/infra-ansible.git] / roles / baremetal_provision / templates / guest-img-nginx.conf.j2
diff --git a/roles/baremetal_provision/templates/guest-img-nginx.conf.j2 b/roles/baremetal_provision/templates/guest-img-nginx.conf.j2
new file mode 100644 (file)
index 0000000..1985655
--- /dev/null
@@ -0,0 +1,12 @@
+http{
+    server {
+            listen {{golden_image_http_port}};
+            root /opt/images/;
+            location / {
+            }
+            location /bootimages {
+                alias /remote_image_share_root/;
+            }
+        }
+    }
+events{}