Comments on Running Roundcube 0.7.1 On Nginx (LEMP) On Debian Squeeze/Ubuntu 11.10

Running Roundcube 0.7.1 On Nginx (LEMP) On Debian Squeeze/Ubuntu 11.10 This tutorial shows how you can install and run Roundcube webmail (version 0.7.1) web site on a Debian Squeeze or Ubuntu 11.10 system that has nginx installed instead of Apache (LEMP = Linux + nginx (pronounced "engine x") + MySQL + PHP). Roundcube webmail is a browser-based multilingual IMAP client with an application-like user interface. nginx is a HTTP server that uses much less resources than Apache and delivers pages a lot of faster, especially static files.

2 Comment(s)

Add comment

Please register in our forum first to comment.

Comments

By: henrixd

I have this working well in my box. First default deny and then start allowing stuff. index.php is only php that needs to handle with fcgi. Others are only static files. part of nginx.conf:

root   /usr/local/www/roundcube;
include        fastcgi_params;
fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
location / { deny all; }
location = / { index  index.php; }
location = /index.php {
	fastcgi_pass   unix:/var/run/spawn_fcgi.socket;
}
location /program/blacnk.gif {}
location /program/blocked.gif {}
location ~ ^/program/js/.*\.js$ {}
location ~ ^/skins/.*\.jpg|jpeg|gif|png|html|css|js$ {}
location ~ ^/plugins/.*\.jpg|jpeg|gif|png|html|css|js$ {}

By: Kevin

I can't access my roundcube with for example www.mail.com/installler and i follewed your steps