Fix: websocket support with explicit yes/no
This commit is contained in:
parent
6754b139c4
commit
a1cbee3297
3 changed files with 5 additions and 2 deletions
|
@ -23,6 +23,7 @@ Role Variables
|
||||||
- websocket_path: path to websocket (optional)
|
- websocket_path: path to websocket (optional)
|
||||||
- websocket_localtion: reverse destination point for websocket config
|
- websocket_localtion: reverse destination point for websocket config
|
||||||
- websocket_port: websocket port to redirect to
|
- websocket_port: websocket port to redirect to
|
||||||
|
- websocket: yes/no - enable websocket block in config file
|
||||||
- vhost_name: name of the vhost
|
- vhost_name: name of the vhost
|
||||||
|
|
||||||
Dependencies
|
Dependencies
|
||||||
|
|
|
@ -11,3 +11,5 @@ reverse_location: localhost
|
||||||
reverse_port: 8080
|
reverse_port: 8080
|
||||||
|
|
||||||
vhost_name: default
|
vhost_name: default
|
||||||
|
|
||||||
|
websocket: no
|
|
@ -16,7 +16,7 @@
|
||||||
transparent
|
transparent
|
||||||
}
|
}
|
||||||
|
|
||||||
{% if websocket_path is defined %}
|
{% if websocket %}
|
||||||
proxy {{ websocket_path }} http://{{ websocket_location }}:{{ websocket_port }} {
|
proxy {{ websocket_path }} http://{{ websocket_location }}:{{ websocket_port }} {
|
||||||
websocket
|
websocket
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue