ansible/roles/mete/templates/nginx.j2

18 lines
252 B
Plaintext
Raw Normal View History

2021-02-16 17:38:59 -06:00
# {{ 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";
}
}