openstack-ansible-os_ironic/templates/ironic-ipxe.conf.j2
James Denton 8f3a9e207c Add iPXE support to Ironic Conductor
This patchset adds support for iPXE, which can speed up baremetal
provisioning considerably due to the use of HTTP versus TFTP.

Change-Id: I8b49ae37a0380cd7a2191f050a52c85cc373026b
2020-10-22 15:24:19 +00:00

18 lines
354 B
Django/Jinja

# {{ ansible_managed }}
server {
listen 0.0.0.0:{{ ironic_ipxe_port }};
server_name ironic-ipxe;
# Logging
access_log /var/log/nginx/ironic-ipxe.access.log combined gzip buffer=32k;
error_log /var/log/nginx/ironix-ipxe.error.log notice;
# directory to store ipxe
location / {
root /httpboot;
autoindex off;
expires 1h;
}
}