fuel-ccp-keystone/service/files/servers.conf.j2

19 lines
484 B
Django/Jinja

server {
listen {{ network_topology["private"]["address"] }}:{{ keystone.admin_port.cont }} ssl;
include common/ssl.conf;
location / {
proxy_pass http://keystone_admin;
include common/proxy-headers.conf;
}
}
server {
listen {{ network_topology["private"]["address"] }}:{{ keystone.public_port.cont }} ssl;
include common/ssl.conf;
location / {
proxy_pass http://keystone_public;
include common/proxy-headers.conf;
}
}