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

19 lines
580 B
Django/Jinja

server {
listen {{ network_topology["private"]["address"] }}:{{ nova.api_port.cont }} ssl;
include common/ssl.conf;
location / {
proxy_pass http://nova_api;
include common/proxy-headers.conf;
}
}
server {
listen {{ network_topology["private"]["address"] }}:{{ nova.metadata.port.cont }} ssl;
include common/ssl.conf;
location / {
proxy_pass http://nova_metadata;
include common/proxy-headers.conf;
}
}