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.
|
location /llng-reload {
|
|
{% for ip in llng_reload_src_ip | default([]) %}
|
|
allow {{ ip }};
|
|
{% endfor %}
|
|
deny all;
|
|
include /etc/nginx/fastcgi_params;
|
|
fastcgi_pass unix:/var/run/llng-fastcgi-server/llng-fastcgi.sock;
|
|
fastcgi_param LLTYPE reload;
|
|
}
|
|
|