Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 87e3f7d55a82dac63e6258eb947b0c6e > files > 1

owncloud-6.0.0-1.mga4.noarch.rpm

# owncloud configuration
Alias /owncloud /usr/share/owncloud
<Directory /usr/share/owncloud>
    <IfModule mod_authz_core.c>
	# Apache 2.4
	<RequireAny>
	    Require all granted
	</RequireAny>
    </IfModule>
    <IfModule !mod_authz_core.c>
	# Apache 2.2
	Order allow,deny
	Allow from all
    </IfModule>
</Directory>
<Directory /usr/share/owncloud/data>
    <IfModule mod_authz_core.c>
	# Apache 2.4
	<RequireAny>
	    Require all denied
	</RequireAny>
    </IfModule>
    <IfModule !mod_authz_core.c>
	# Apache 2.2
	Order Deny,Allow
	Deny from All
	Allow from None
    </IfModule>
</Directory>