configuration reverse proxy wss
This commit is contained in:
parent
37531ca37c
commit
ed36a30dfe
|
@ -2,6 +2,7 @@
|
|||
<creole>
|
||||
<files>
|
||||
<file filelist='nineschool' name='/etc/eole/eole-db.d/nineschool-db.yml' rm='True' mkdir='True'/>
|
||||
<file filelist='nineschool_nginx' name='/etc/nginx/web.d/nineschool.conf' source='nineschool-nginx.conf' rm='True' mkdir='True' />
|
||||
</files>
|
||||
|
||||
<containers>
|
||||
|
@ -22,7 +23,7 @@
|
|||
<family name='nineschool' icon='eye-open'>
|
||||
<variable name="ninegate_test_ninegate" type="oui/non" hidden='True' exists='False'><value>non</value></variable>
|
||||
|
||||
<variable name='activer_nineschool' type='oui/non' description='Activer nineschool'>
|
||||
<variable name='activer_nineschool' type='oui/non' description='Activer Nineschool'>
|
||||
<value>oui</value>
|
||||
</variable>
|
||||
|
||||
|
@ -76,9 +77,21 @@
|
|||
<condition name='hidden_if_in' source='activer_apache'>
|
||||
<param>non</param>
|
||||
<target type='filelist'>nineschool</target>
|
||||
<target type='filelist'>nineschool_nginx</target>
|
||||
<target type='servicelist'>nineschool</target>
|
||||
</condition>
|
||||
|
||||
<!-- AFFICHAGE EN FONCTION DE REVERSE PROXY -->
|
||||
<condition name='hidden_if_in' source='activer_revprox'>
|
||||
<param>non</param>
|
||||
<target type='filelist'>nineschool_nginx</target>
|
||||
</condition>
|
||||
|
||||
<!-- AFFICHAGE EN FONCTION DE REVERSE PROXY -->
|
||||
<condition name='disabled_if_in' source='activer_revprox'>
|
||||
<param>oui</param>
|
||||
<target type='filelist'>nineboard_nginx</target>
|
||||
</condition>
|
||||
|
||||
<!-- AFFICHAGE EN FONCTION DE NINESCHOOL -->
|
||||
<condition name='hidden_if_in' source='activer_nineschool'>
|
||||
|
@ -108,6 +121,7 @@
|
|||
<target type='variable'>nineschool_dbpass</target>
|
||||
|
||||
<target type='filelist'>nineschool</target>
|
||||
<target type='filelist'>nineschool_nginx</target>
|
||||
<target type='servicelist'>nineschool</target>
|
||||
</condition>
|
||||
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
location /wssnineschool {
|
||||
proxy_pass https://%%container_ip_web;
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection "upgrade";
|
||||
}
|
Loading…
Reference in New Issue