Initial commit
[ta/infra-ansible.git] / roles / baremetal_provision / templates / guest-img-nginx.conf.j2
1 http{
2     server {
3             listen {{golden_image_http_port}};
4             root /opt/images/;
5             location / {
6             }
7             location /bootimages {
8                 alias /remote_image_share_root/;
9             }
10         }
11     }
12 events{}