
This should allow the zuul dashboard to work. Change-Id: I53c7ccb861630cfbca19d53193e5a7266b179635 Depends-On: https://review.openstack.org/648849 Signed-off-by: Paul Belanger <pabelanger@redhat.com>
14 lines
265 B
Django/Jinja
14 lines
265 B
Django/Jinja
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
server_name _;
|
|
|
|
location /zuul/ {
|
|
proxy_pass http://{{ hostvars['zw01'].ansible_host }}:9000/;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "upgrade";
|
|
}
|
|
}
|