From 7840065569de84a135711318d66e5bcf8827097e Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sun, 5 Jul 2015 07:54:26 +0200 Subject: owncloud: import 8.0.4 from rawhide --- owncloud-auth-local.inc | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 owncloud-auth-local.inc (limited to 'owncloud-auth-local.inc') diff --git a/owncloud-auth-local.inc b/owncloud-auth-local.inc new file mode 100644 index 0000000..69cfd00 --- /dev/null +++ b/owncloud-auth-local.inc @@ -0,0 +1,14 @@ +# Apache config snippet. To be used by /etc/httpd/conf.d/*.conf files +# with Include. Allows access only from local system. + + +# Apache 2.4 +Require local + + +# Apache 2.2 +Order Deny,Allow +Deny from all +Allow from 127.0.0.1 +Allow from ::1 + -- cgit