[gitlab] Fix reverse proxy configuration
Signed-off-by: Yohann D'ANELLO <ynerant@crans.org>certbot_on_virtu
parent
e6c4b70efd
commit
85afe1fd32
|
@ -33,6 +33,8 @@ loc_nginx:
|
||||||
loc_reverseproxy:
|
loc_reverseproxy:
|
||||||
reverseproxy_sites:
|
reverseproxy_sites:
|
||||||
- {from: gitlab.crans.org, to: "127.0.0.1:8000"}
|
- {from: gitlab.crans.org, to: "127.0.0.1:8000"}
|
||||||
- {from: gitlab.adm.crans.org, to: "127.0.0.1:8000", ssl: adm.crans.corg}
|
- {from: gitlab.adm.crans.org, to: "127.0.0.1:8000", ssl: adm.crans.org}
|
||||||
|
|
||||||
|
redirect_sites: []
|
||||||
|
|
||||||
static_sites: []
|
static_sites: []
|
||||||
|
|
3
hosts
3
hosts
|
@ -125,6 +125,9 @@ radius
|
||||||
hodaur.adm.crans.org
|
hodaur.adm.crans.org
|
||||||
sputnik.adm.crans.org
|
sputnik.adm.crans.org
|
||||||
|
|
||||||
|
[reverseproxy:children]
|
||||||
|
git
|
||||||
|
|
||||||
[roundcube]
|
[roundcube]
|
||||||
roundcube.adm.crans.org
|
roundcube.adm.crans.org
|
||||||
|
|
||||||
|
|
|
@ -11,6 +11,8 @@
|
||||||
vars:
|
vars:
|
||||||
certbot: '{{ loc_certbot | default(glob_certbot | default([])) }}'
|
certbot: '{{ loc_certbot | default(glob_certbot | default([])) }}'
|
||||||
gitlab: '{{ glob_gitlab | default({}) | combine(loc_gitlab | default({}), recursive=True) }}'
|
gitlab: '{{ glob_gitlab | default({}) | combine(loc_gitlab | default({}), recursive=True) }}'
|
||||||
|
nginx: '{{ glob_nginx | default({}) | combine(loc_nginx | default({})) }}'
|
||||||
|
reverseproxy: '{{ glob_reverseproxy | default({}) | combine(loc_reverseproxy | default({})) }}'
|
||||||
roles:
|
roles:
|
||||||
- certbot
|
- certbot
|
||||||
- gitlab
|
- gitlab
|
||||||
|
|
Loading…
Reference in New Issue