forked from ccchb/ansible
18 lines
252 B
Text
18 lines
252 B
Text
|
# {{ 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";
|
||
|
}
|
||
|
}
|