changing order of http and ws endpoints to fix ws connection issues

This commit is contained in:
Tim Flink 2019-02-18 23:08:25 +00:00
parent 3a77629f7e
commit 9a9866700a

View file

@ -1,13 +1,13 @@
<Location /{{ buildmaster_endpoint }}/ >
ProxyPass "http://127.0.0.1:8010/"
ProxyPassReverse "http://127.0.0.1:8010/"
ProxyPreserveHost On
</Location>
<Location /{{ buildmaster_endpoint }}/ws >
ProxyPass "ws://127.0.0.1:8010/ws"
ProxyPassReverse "ws://127.0.0.1:8010/ws"
ProxyPreserveHost On
</Location>
<Location /{{ buildmaster_endpoint }}/ >
ProxyPass "http://127.0.0.1:8010/"
ProxyPassReverse "http://127.0.0.1:8010/"
ProxyPreserveHost On
</Location>