介于网上一直说nginx在处理高连接数下的性能优势,所以非常希望尝试下。

这里我们说说如何在ubuntu下安装nginx服务。

1.安装mysql

 
  1. sudo apt-get install mysql-server mysql-client 

安装过程中要输入root用户的密码。

2.安装nginx

 
  1. sudo apt-get install nginx 

3.安装成功后。我们重启下nginx服务

 
  1. sudo service nginx restart 

启动之后我们就可以访问以下我们的地址了。看能不能出现nginx的欢迎界面。

4.这里我们使用php5-fpm来作为我们的php解析。

 
  1. sudo apt-get install php5-fpm 

5.接下来我们要修改一下nginx的站点配置了。

ngnix的配置文件存放在/etc/nginx/sites-availble/default

 
  1. server { 
  2.         listen   80; ## listen for ipv4; this line is default and implied 
  3.         listen   [::]:80 default ipv6only=on; ## listen for ipv6 
  4.         root /usr/share/nginx/www; 
  5.         index index.php index.html index.htm; 
  6.         # Make site accessible from http://localhost/ 
  7.         server_name _; 
  8.         location / { 
  9.                 # First attempt to serve request as file, then 
  10.                 # as directory, then fall back to index.html 
  11.                 try_files $uri $uri/ /index.html; 
  12.         } 
  13.         location /doc { 
  14.                 root /usr/share; 
  15.                 autoindex on; 
  16.                 allow 127.0.0.1; 
  17.                 deny all; 
  18.         } 
  19.         #error_page 404 /404.html; 
  20.         # redirect server error pages to the static page /50x.html 
  21.         # 
  22.         error_page 500 502 503 504 /50x.html; 
  23.         location = /50x.html { 
  24.                 root /usr/share/nginx/www; 
  25.         } 
  26.         # proxy the PHP scripts to Apache listening on 127.0.0.1:80 
  27.         # 
  28.         #location ~ \.php$ { 
  29.         #       proxy_pass http://127.0.0.1; 
  30.         #} 
  31.         # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 
  32.         # 
  33.         location ~ \.php$ { 
  34.                 try_files $uri =404
  35.                 fastcgi_pass 127.0.0.1:9000; 
  36.                 fastcgi_index index.php; 
  37.                 include fastcgi_params; 
  38.         } 
  39.         # deny access to .htaccess files, if Apache's document root 
  40.         # concurs with nginx's one 
  41.         # 
  42.         location ~ /\.ht { 
  43.                 deny all; 
  44.         } 

增加了php解析的一些代码在里面。

6.我们在安装php5相关的一些组件。

 
  1. sudo apt-cache search php5 
 
  1. apt-get install php5-mysql php5-curl php5-gd php5-intl php-pear php5-imagick php5-imap php5-mcrypt php5-memcache php5-ming php5-ps php5-pspell php5-recode php5-snmp php5-sqlite php5-tidy php5-xmlrpc php5-xsl 

7.重启服务

 
  1. sudo service php5-fpm restart 
  2. sudo service nginx 

8.写个探针文件试试吧。呵呵。。。