You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
set $maintenance 1;
|
|
{% for ip in nginx_maintenance_ip %}
|
|
if ($remote_addr ~ "^{{ ip | replace('.','\.') }}") {
|
|
set $maintenance 0;
|
|
}
|
|
{% endfor %}
|
|
if ($maintenance = 1) {
|
|
rewrite (.*) https://downtime.{{ nginx_primary_domain | default(ansible_domain) }}/ redirect;
|
|
}
|
|
|