487de043ea
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
22 lines
579 B
Django/Jinja
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 '';
|
|
}
|
|
}
|