bifrost/playbooks/roles/bifrost-keystone-install/templates/nginx_conf.d_bifrost-keystone.conf.j2
Julia Kreger 487de043ea Fix keystone config templates
The ansible_managed variable was resulting in
text being put into the keystone config file that
caused keystone to fail. Commenting out the entry
to allow the test script to execute successfuly.

Change-Id: Ie8ff1f9b8354e4d1411a8714df6a73b6adfd9cd5
2016-12-05 21:22:54 +00:00

22 lines
579 B
Django/Jinja

# {{ ansible_managed }}
server {
listen 5000;
access_log /var/log/nginx/keystone/access.log;
error_log /var/log/nginx/keystone/error.log;
location / {
uwsgi_pass unix:///run/uwsgi/keystone-public.socket;
include uwsgi_params;
uwsgi_param SCRIPT_NAME '';
}
}
server {
listen 35357;
access_log /var/log/nginx/keystone/access.log;
error_log /var/log/nginx/keystone/error.log;
location / {
uwsgi_pass unix:///run/uwsgi/keystone-admin.socket;
include uwsgi_params;
uwsgi_param SCRIPT_NAME '';
}
}