1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 19:52:06 +00:00
iiab/roles/nextcloud/templates/nextcloud.conf.j2.unused

31 lines
1.1 KiB
Text
Raw Normal View History

2019-09-04 21:01:20 +00:00
# Ansible template that becomes /etc/apache2/sites-available/nextcloud.conf
Alias {{ nextcloud_url }} {{ nextcloud_root_dir }}
2017-05-29 22:02:55 +00:00
<Directory {{ nextcloud_root_dir }}/>
Options +FollowSymlinks
2018-09-06 14:45:13 +00:00
AllowOverride All
2017-05-29 22:02:55 +00:00
<IfModule mod_authz_core.c>
# Apache 2.4
2019-09-04 16:54:57 +00:00
# http://httpd.apache.org/docs/2.4/mod/mod_authz_core.html
2019-09-05 02:01:56 +00:00
{% if True %} {# 2020-02-15: Condition WAS... nextcloud_allow_public_ips #}
# PERMIT ACCESS FROM ALL IPv4 ADDRESSES:
Require all granted
# PERMIT ACCESS FROM THESE IPv4 ADDRESS RANGES ONLY:
#Require ip 127.0.0.1 {{ lan_ip }}/{{ lan_netmask }} 192.168 10
{% else %}
# PERMIT ACCESS FROM ALL IPv4 ADDRESSES:
#Require all granted
# PERMIT ACCESS FROM THESE IPv4 ADDRESS RANGES ONLY:
Require ip 127.0.0.1 {{ lan_ip }}/{{ lan_netmask }} 192.168 10
{% endif %}
{# Reminder that {{ lan_ip }}/{{ lan_netmask }} is 172.18.96.1/255.255.224.0 #}
# AVOID THIS LINE AS IT OVERLY RESTRICTS SCHOOLS W/ 192.168.1.x, 10.x.y.z:
#Require ip 127.0.0.1 {{ lan_ip }}/{{ lan_netmask }} {{ nextcloud_required_ip }} {{ openvpn_server_virtual_ip }}/255.255.255.0
2017-05-29 22:02:55 +00:00
</IfModule>
2017-05-29 22:02:55 +00:00
</Directory>