mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-20 20:23:19 +02:00
9 lines
221 B
Plaintext
9 lines
221 B
Plaintext
![]() |
<Location /server>
|
||
|
ProxyPass http://localhost:{{ psono_server_port }}
|
||
|
{% if psono_server_src_ip | length < 1 %}
|
||
|
Require all denied
|
||
|
{% else %}
|
||
|
Require ip {{ psono_server_src_ip | join(' ') }}
|
||
|
{% endif %}
|
||
|
</Location>
|