运行SquirrelMail在Nginx(LEMP)在Debian Squeeze / Ubuntu 11.04
来自Debian / Ubuntu存储库的SquirrelMail软件包附带了Apache的配置文件,但不包含nginx。 本教程将介绍如何在nginx vhost中使用Debian Squeeze / Ubuntu 11.04 SquirrelMail软件包。 Nginx是一个HTTP服务器,比Apache使用的资源少得多,并提供了更快的网页,特别是静态文件。
我不会保证这将为您工作!
1初步说明
我想在一个名为www.example.com
/ example.com
的vhost中使用SquirrelMail和文件根/var/www/www.example.com/web
。
您应该有一个工作的LEMP安装,如这些教程所示:
Ubuntu用户注意事项:
因为我们必须使用root权限运行本教程的所有步骤,所以我们可以使用字符串sudo
在本教程中添加所有命令,也可以通过键入来成为root
sudo su
2安装APC
APC是一个免费开放的PHP操作码cacher,用于缓存和优化PHP中间代码。 它类似于其他PHP操作码cacher,如eAccelerator和XCache。 强烈建议您安装其中一个以加快您的PHP页面。
APC可以安装如下:
apt-get install php-apc
如果您使用PHP-FPM作为FastCGI守护进程(如在Ubuntu 11.04中安装使用PHP5(和PHP-FPM)和MySQL支持)中安装Nginx ,请重新启动它,如下所示:
/etc/init.d/php5-fpm restart
如果您使用lighttpd的spawn-fcgi程序作为FastCGI守护进程(例如在使用Debian Squeeze安装Nginx with PHP5和MySQL支持 )中,我们必须终止当前的spawn-fcgi进程(在端口9000
上运行),并创建一个新的。 跑
netstat -tap
找出当前的spawn-fcgi进程的PID:
root@server1:~# netstat -tap
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 *:sunrpc *:* LISTEN 734/portmap
tcp 0 0 *:www *:* LISTEN 2987/nginx
tcp 0 0 *:ssh *:* LISTEN 1531/sshd
tcp 0 0 *:57174 *:* LISTEN 748/rpc.statd
tcp 0 0 localhost.localdom:smtp *:* LISTEN 1507/exim4
tcp 0 0 localhost.localdom:9000 *:* LISTEN 1542/php5-cgi
tcp 0 0 localhost.localdo:mysql *:* LISTEN 1168/mysqld
tcp 0 52 server1.example.com:ssh 192.168.0.198:2462 ESTABLISHED 1557/0
tcp6 0 0 [::]:www [::]:* LISTEN 2987/nginx
tcp6 0 0 [::]:ssh [::]:* LISTEN 1531/sshd
tcp6 0 0 ip6-localhost:smtp [::]:* LISTEN 1507/exim4
root@server1:~#
在上面的输出中,PID是1542
,所以我们可以杀死当前的进程如下:
kill -9 1542
之后我们创建一个新的spawn-fcgi进程:
/usr/bin/spawn-fcgi -a 127.0.0.1 -p 9000 -u www-data -g www-data -f /usr/bin/php5-cgi -P /var/run/fastcgi-php.pid
3 Vhost配置
如果您尚未设置nginx vhost,可以按如下方式设置:
我的www.example.com
网站的文档根目录是/var/www/www.example.com/web
- 如果不存在,创建如下:
mkdir -p /var/www/www.example.com/web
接下来,我们为/ etc / nginx / sites-available /
目录中的www.example.com
vhost创建一个基本的nginx vhost配置,如下所示:
vi /etc/nginx/sites-available/www.example.com.vhost
server { listen 80; server_name www.example.com example.com; root /var/www/www.example.com/web; if ($http_host != "www.example.com") { rewrite ^ http://www.example.com$request_uri permanent; } index index.php index.html; location = /favicon.ico { log_not_found off; access_log off; } location = /robots.txt { allow all; log_not_found off; access_log off; } # Make sure files with the following extensions do not get loaded by nginx because nginx would display the source code, and these files can contain PASSWORDS! location ~* \.(engine|inc|info|install|make|module|profile|test|po|sh|.*sql|theme|tpl(\.php)?|xtmpl)$|^(\..*|Entries.*|Repository|Root|Tag|Template)$|\.php_ { deny all; } # Deny all attempts to access hidden files such as .htaccess, .htpasswd, .DS_Store (Mac). location ~ /\. { deny all; access_log off; log_not_found off; } location ~* \.(jpg|jpeg|png|gif|css|js|ico)$ { expires max; log_not_found off; } location ~ \.php$ { try_files $uri =404; include /etc/nginx/fastcgi_params; fastcgi_pass 127.0.0.1:9000; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; } } |
要启用该vhost,我们从/ etc / nginx / sites-enabled /
目录创建一个符号链接:
cd /etc/nginx/sites-enabled/
ln -s /etc/nginx/sites-available/www.example.com.vhost www.example.com.vhost
重新加载nginx以使更改生效:
/etc/init.d/nginx reload
4安装SquirrelMail + SquirrelMail Vhost配置
接下来我们安装SquirrelMail,如下所示:
apt-get install squirrelmail
现在我们必须配置SquirrelMail,至少告诉我们使用哪个POP3-IMAP守护进程(本例中使用Courier,请根据您的情况进行调整):
squirrelmail-configure
我们必须告诉SquirrelMail我们正在使用Courier-IMAP / -POP3:
松鼠邮件配置:阅读:config.php(1.4.0)
-------------------------------------------------- -------
主菜单 -
组织偏好
2.服务器设置
文件夹默认值
4.一般选项
主题
地址簿
7.消息(MOTD)
8.插件
9.数据库
10.语言
D.为特定IMAP服务器设置预定义的设置
C打开颜色
S保存数据
Q退出
命令>>
< - D
SquirrelMail配置:读取:config.php
-------------------------------------------------- -------
当我们一直在建造SquirrelMail时,我们发现了一些
某些不起作用的服务器的优先级更好
和别人一样
如果选择您的IMAP服务器,则此选项将会
为该服务器设置一些预定义的设置。
请注意,您仍然需要通过并确保
一切都是正确的。
这并不改变一切。
有
只有几个设置,这将改变。
请选择您的IMAP服务器:
bincimap = Binc IMAP服务器
Express=ExpressIMAP服务器
cyrus = Cyrus IMAP服务器
dovecot = Dovecot安全IMAP服务器
exchange = Microsoft Exchange IMAP服务器
hmailserver = hMailServer
macosx = Mac OS X Mailserver
汞32 =汞/ 32
uw =华盛顿大学的IMAP服务器
gmail = IMAP访问Google邮件(Gmail)帐户
退出=不要改变任何东西
命令>>
< - Express
SquirrelMail配置:读取:config.php
-------------------------------------------------- -------
当我们一直在建造SquirrelMail时,我们发现了一些
某些不起作用的服务器的优先级更好
和别人一样
如果选择您的IMAP服务器,则此选项将会
为该服务器设置一些预定义的设置。
请注意,您仍然需要通过并确保
一切都是正确的。
这并不改变一切。
有
只有几个设置,这将改变。
请选择您的IMAP服务器:
bincimap = Binc IMAP服务器
Express=ExpressIMAP服务器
cyrus = Cyrus IMAP服务器
dovecot = Dovecot安全IMAP服务器
exchange = Microsoft Exchange IMAP服务器
hmailserver = hMailServer
macosx = Mac OS X Mailserver
汞32 =汞/ 32
uw =华盛顿大学的IMAP服务器
退出=不要改变任何东西
指挥>>Express
imap_server_type =Express
default_folder_prefix = INBOX。
trash_folder =垃圾桶
sent_folder =已发送
draft_folder =草稿
show_prefix_option = false
default_sub_of_inbox = false
show_contain_subfolders_option = false
optional_delimiter =。
delete_folder = true
按任意键继续...
< - ENTER
松鼠邮件配置:阅读:config.php(1.4.0)
-------------------------------------------------- -------
主菜单 -
组织偏好
2.服务器设置
文件夹默认值
4.一般选项
主题
地址簿
7.消息(MOTD)
8.插件
9.数据库
10.语言
D.为特定IMAP服务器设置预定义的设置
C打开颜色
S保存数据
Q退出
命令>>
< - S
松鼠邮件配置:阅读:config.php(1.4.0)
-------------------------------------------------- -------
主菜单 -
组织偏好
2.服务器设置
文件夹默认值
4.一般选项
主题
地址簿
7.消息(MOTD)
8.插件
9.数据库
10.语言
D.为特定IMAP服务器设置预定义的设置
C打开颜色
S保存数据
Q退出
命令>> S
数据保存在config.php中
按回车继续...
< - ENTER
松鼠邮件配置:阅读:config.php(1.4.0)
-------------------------------------------------- -------
主菜单 -
组织偏好
2.服务器设置
文件夹默认值
4.一般选项
主题
地址簿
7.消息(MOTD)
8.插件
9.数据库
10.语言
D.为特定IMAP服务器设置预定义的设置
C打开颜色
S保存数据
Q退出
命令>>
< - Q
您现在可以在/ usr / share / squirrelmail /
目录中找到SquirrelMail。 现在我们必须配置我们的vhost,以便nginx可以在该目录中找到SquirrelMail。
打开/etc/nginx/sites-available/www.example.com.vhost
...
vi /etc/nginx/sites-available/www.example.com.vhost
...并将以下部分添加到服务器{}
容器中:
server { [...] location /squirrelmail { root /usr/share/; index index.php index.html index.htm; location ~ ^/squirrelmail/(.+\.php)$ { try_files $uri =404; root /usr/share/; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include /etc/nginx/fastcgi_params; } location ~* ^/squirrelmail/(.+\.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt))$ { root /usr/share/; } } location /webmail { rewrite ^/* /squirrelmail last; } [...] } |
重新加载nginx:
/etc/init.d/nginx reload
而已! 您现在可以在浏览器中访问http://www.example.com/squirrelmail
或http://www.example.com/webmail
,如果一切顺利,您可以登录SquirrelMail:
如果您的vhost使用http而不是http,则应在其上
添加fastcgi_param
行;
到您的SquirrelMail配置如下:
vi /etc/nginx/sites-available/www.example.com.vhost
server { [...] location /squirrelmail { root /usr/share/; index index.php index.html index.htm; location ~ ^/squirrelmail/(.+\.php)$ { try_files $uri =404; root /usr/share/; fastcgi_pass 127.0.0.1:9000; fastcgi_param HTTPS on; # <-- add this line fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include /etc/nginx/fastcgi_params; } location ~* ^/squirrelmail/(.+\.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt))$ { root /usr/share/; } } location /webmail { rewrite ^/* /squirrelmail last; } [...] } |
如果您的vhost使用http和https,则需要将以下部分添加到/etc/nginx/nginx.conf中的http {}
部分(在两个包含行之前),该部分确定访问者是否使用http或https,相应地设置$ fastcgi_https
变量(我们将在我们的www.example.com
vhost中使用)
vi /etc/nginx/nginx.conf
[...] http { [...] ## Detect when HTTPS is used map $scheme $fastcgi_https { default off; https on; } ## # Virtual Host Configs ## include /etc/nginx/conf.d/*.conf; include /etc/nginx/sites-enabled/*; } [...] |
然后打开您的vhost配置文件,而不是fastcgi_param HTTPS on;
你添加行fastcgi_param HTTPS $ fastcgi_https;
以便您可以将SquirrelMail用于http和https请求:
vi /etc/nginx/sites-available/www.example.com.vhost
server { [...] location /squirrelmail { root /usr/share/; index index.php index.html index.htm; location ~ ^/squirrelmail/(.+\.php)$ { try_files $uri =404; root /usr/share/; fastcgi_pass 127.0.0.1:9000; fastcgi_param HTTPS $fastcgi_https; # <-- add this line fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include /etc/nginx/fastcgi_params; } location ~* ^/squirrelmail/(.+\.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt))$ { root /usr/share/; } } location /webmail { rewrite ^/* /squirrelmail last; } [...] } |
以后不要忘记重新加载nginx:
/etc/init.d/nginx reload
5链接
- 松鼠邮件: http : //squirrelmail.org/
- nginx: http : //nginx.org/
- nginx维基: http : //wiki.nginx.org/
- Debian: http : //www.debian.org/
- Ubuntu: http : //www.ubuntu.com/
关于作者
Falko Timme是所有者 Timme Hosting(超快nginx网页托管)。 他是youcl(自2005年以来)的主要维护者, 也是ISPConfig的核心开发人员之一 (自2000年起)。 他还为O'Reilly的“Linux系统管理”一书作出了贡献。