fuel-ccp-heat/service/files/nginx-api.conf.j2

10 lines
229 B
Django/Jinja

server {
listen {{ network_topology["private"]["address"] }}:{{ heat.api_port.cont }} ssl;
include common/ssl.conf;
location / {
proxy_pass http://heat_api;
include common/proxy-headers.conf;
}
}