taskotron: changing location directives to make ws work

the <Location/> directives were in the wrong order and the ws requests
were being swallowed by the wrong directive.
This commit is contained in:
Tim Flink 2019-03-15 20:08:00 +00:00
parent 931bd8daf5
commit e31ba0d65b

View file

@ -1,3 +1,10 @@
<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"
@ -5,9 +12,3 @@
ProxyPreserveHost On
</Location>
<Location /{{ buildmaster_endpoint }}/ >
ProxyPass "http://127.0.0.1:8010/"
ProxyPassReverse "http://127.0.0.1:8010/"
ProxyPreserveHost On
</Location>