mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-27 07:33:18 +02:00
10 lines
254 B
Plaintext
10 lines
254 B
Plaintext
![]() |
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;
|
||
|
}
|