summaryrefslogtreecommitdiffstats
path: root/nextcloud-auth-any.inc
diff options
context:
space:
mode:
authorJames Hogarth <james.hogarth@gmail.com>2017-02-21 14:30:00 +0000
committerJames Hogarth <james.hogarth@gmail.com>2017-02-21 14:30:00 +0000
commit260614d225ad68cf4bb1bc31c2480b2ccd169d56 (patch)
tree50e35459d24d7c7972e5491dd03a19bd3197ce21 /nextcloud-auth-any.inc
parent3545d203eaf0f4c0bff942e50004f8785f1cd7b3 (diff)
import of srpm from review
Diffstat (limited to 'nextcloud-auth-any.inc')
-rw-r--r--nextcloud-auth-any.inc12
1 files changed, 12 insertions, 0 deletions
diff --git a/nextcloud-auth-any.inc b/nextcloud-auth-any.inc
new file mode 100644
index 0000000..4744713
--- /dev/null
+++ b/nextcloud-auth-any.inc
@@ -0,0 +1,12 @@
+# Apache config snippet. To be used by /etc/httpd/conf.d/*.conf files
+# with Include. Allows access from any system.
+
+<IfModule mod_authz_core.c>
+# Apache 2.4
+Require all granted
+</IfModule>
+<IfModule !mod_authz_core.c>
+# Apache 2.2
+Order Deny,Allow
+Allow from all
+</IfModule>