Sophie

Sophie

distrib > Mageia > 4 > i586 > by-pkgid > 7690ede888b14a8a830a0e196e5a42e3 > files > 1

owncloud-6.0.4-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>