Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'certbot-apache/tests/apache-conf-files/passing/owncloud-1264.conf')
-rw-r--r--certbot-apache/tests/apache-conf-files/passing/owncloud-1264.conf13
1 files changed, 13 insertions, 0 deletions
diff --git a/certbot-apache/tests/apache-conf-files/passing/owncloud-1264.conf b/certbot-apache/tests/apache-conf-files/passing/owncloud-1264.conf
new file mode 100644
index 000000000..d0ac81fa3
--- /dev/null
+++ b/certbot-apache/tests/apache-conf-files/passing/owncloud-1264.conf
@@ -0,0 +1,13 @@
+Alias /owncloud /usr/share/owncloud
+
+<Directory /usr/share/owncloud/>
+ Options +FollowSymLinks
+ AllowOverride All
+ <IfVersion < 2.3>
+ order allow,deny
+ allow from all
+ </IfVersion>
+ <IfVersion >= 2.3>
+ Require all granted
+ </IfVersion>
+</Directory>