9 lines
299 B
Plaintext
9 lines
299 B
Plaintext
%set %%allowed_networks = ' '.join(['/'.join([%%str(ip), ip.syspass_allowed_netmask]) for ip in %%getVar('syspass_allowed_ip', [])])
|
|
Alias /syspass /srv/syspass
|
|
<Directory "/srv/syspass">
|
|
DirectoryIndex index.php
|
|
Order Deny,Allow
|
|
Deny from All
|
|
Allow from %%allowed_networks
|
|
</Directory>
|