mirror of https://dev.ccchb.de/ccchb/ansible.git
18 lines
252 B
Plaintext
18 lines
252 B
Plaintext
|
# {{ ansible_managed }}
|
||
|
|
||
|
server {
|
||
|
{{ mete_nginx_config }}
|
||
|
|
||
|
location / {
|
||
|
proxy_pass {{ mete_app_url }};
|
||
|
|
||
|
satisfy any;
|
||
|
|
||
|
allow 45.152.242.34;
|
||
|
allow 2001:67c:708::/48;
|
||
|
|
||
|
auth_basic "CCCHB internal";
|
||
|
auth_basic_user_file "htpasswd";
|
||
|
}
|
||
|
}
|