From a4216a27177c3ef5fb9b4a0f8ff270aff91e9cdb Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sun, 21 Dec 2014 08:37:20 +0100 Subject: roundcubemail: add nginx, php-fpm support (F21+) --- roundcubemail.httpd | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 roundcubemail.httpd (limited to 'roundcubemail.httpd') diff --git a/roundcubemail.httpd b/roundcubemail.httpd new file mode 100644 index 0000000..5b67c20 --- /dev/null +++ b/roundcubemail.httpd @@ -0,0 +1,49 @@ +# +# 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 + + + + # Apache 2.4 + Require local + + + # Apache 2.2 + Order Deny,Allow + Deny from all + Allow from 127.0.0.1 + Allow from ::1 + + + +# Define who can access the installer +# keep this secured once configured + + + + # Apache 2.4 + Require local + + + # Apache 2.2 + Order Deny,Allow + Deny from all + Allow from 127.0.0.1 + Allow from ::1 + + + +# Those directories should not be viewed by Web clients. + + Order Allow,Deny + Deny from all + + + Order Allow,Deny + Deny from all + -- cgit