summaryrefslogtreecommitdiffstats
path: root/roundcubemail.conf
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2014-12-21 08:37:20 +0100
committerRemi Collet <fedora@famillecollet.com>2014-12-21 08:37:20 +0100
commita4216a27177c3ef5fb9b4a0f8ff270aff91e9cdb (patch)
tree93012de3456b28e8ba9a779ab1083907131c8f73 /roundcubemail.conf
parentbef834045b55ae2beae7b938f56268204dfc19ff (diff)
roundcubemail: add nginx, php-fpm support (F21+)
Diffstat (limited to 'roundcubemail.conf')
-rw-r--r--roundcubemail.conf49
1 files changed, 0 insertions, 49 deletions
diff --git a/roundcubemail.conf b/roundcubemail.conf
deleted file mode 100644
index 5b67c20..0000000
--- a/roundcubemail.conf
+++ /dev/null
@@ -1,49 +0,0 @@
-#
-# Round Cube Webmail is a browser-based multilingual IMAP client
-#
-
-Alias /roundcubemail /usr/share/roundcubemail
-
-# Define who can access the Webmail
-# You can enlarge permissions once configured
-
-<Directory /usr/share/roundcubemail/>
- <IfModule mod_authz_core.c>
- # Apache 2.4
- Require local
- </IfModule>
- <IfModule !mod_authz_core.c>
- # Apache 2.2
- Order Deny,Allow
- Deny from all
- Allow from 127.0.0.1
- Allow from ::1
- </IfModule>
-</Directory>
-
-# Define who can access the installer
-# keep this secured once configured
-
-<Directory /usr/share/roundcubemail/installer/>
- <IfModule mod_authz_core.c>
- # Apache 2.4
- Require local
- </IfModule>
- <IfModule !mod_authz_core.c>
- # Apache 2.2
- Order Deny,Allow
- Deny from all
- Allow from 127.0.0.1
- Allow from ::1
- </IfModule>
-</Directory>
-
-# Those directories should not be viewed by Web clients.
-<Directory /usr/share/roundcubemail/bin/>
- Order Allow,Deny
- Deny from all
-</Directory>
-<Directory /usr/share/roundcubemail/plugins/enigma/home/>
- Order Allow,Deny
- Deny from all
-</Directory>