location /llng-reload { {% for ip in llng_reload_src_ip | default([]) %} allow {{ ip }}; {% endfor %} deny all; {% if llng_engine == 'fastcgi' %} include /etc/nginx/fastcgi_params; fastcgi_pass unix:/var/run/llng-fastcgi-server/llng-fastcgi.sock; fastcgi_param LLTYPE reload; {% elif llng_engine == 'uwsgi' %} include /etc/nginx/uwsgi_params; uwsgi_pass unix:/run/llng-uwsgi/llng-uwsgi.sock; uwsgi_param LLTYPE reload; {% endif %} }