当前位置: > Ubuntu >

Ubuntu 安装Nginx服务

时间:2014-10-28 11:40来源:linux.it.net.cn 作者:it

Download Nginx最新稳定版本

可以从这里http://nginx.org/en/download.html下载最新版本,比如:

 

  1. wget http://nginx.org/download/nginx-1.2.2.tar.gz  

 

apt-get install libpcre3 libpcre3-dev

 

如果需要支持https的话,参考下面的部分:

apt-get install libssl-dev

apt-get install openssl

生成证书参考文档:

http://wiki.nginx.org/NginxHttpSslModule

编译安装

假设下载文件在/usr/src目录下
tar zxvf nginx-1.2.1.tar.gz
cd nginx-1.2.1
./configure --prefix=/usr/nginx--with-http_ssl_module
make
make install

文件会被安装到/usr/nginx目录下
到/usr/nginx/sbin/目录下,执行sudo ./nginx,可以启动nginx了
 

静态文件服务器搭建

在/usr/nginx/conf/nginx.conf文件中添加下列配置 location ~ ^/(images|javascript|js|css|flash|media|static)/ { root /opt/resources; expires 1d; }

创建/opt/resources目录,将css,images等文件夹复制到下面。 假如images目录下有logo.gif图片,启动nginx后,现在可以通过下面的方式查看: http://localhost/images/logo.gif

创建系统服务

cd /etc/init.d/
创建nginx脚本,内容如下:

 

 
  1. #!/bin/sh  
  2.   
  3. ### BEGIN INIT INFO  
  4. # Provides:     nginx  
  5. # Required-Start:  
  6. # Required-Stop:  
  7. # Default-Start:        2 3 4 5  
  8. # Default-Stop:         0 1 6  
  9. # Short-Description: nginx  
  10. # Description: nginx server  
  11. ### END INIT INFO  
  12.   
  13. . /lib/lsb/init-functions  
  14.   
  15. PROGRAM=/usr/nginx/sbin/nginx  
  16.   
  17.   
  18. test -x $PROGRAM || exit 0  
  19.   
  20. case "$1" in  
  21.   start)  
  22.      log_begin_msg "Starting Nginx server"  
  23.      /usr/nginx/sbin/nginx  
  24.      log_end_msg 0  
  25.      ;;  
  26.   stop)  
  27.      PID=`cat /usr/nginx/logs/nginx.pid`  
  28.      log_begin_msg "Stopping Nginx server"  
  29.      if [ ! -z "$PID" ]; then  
  30.         kill -15 $PID  
  31.      fi  
  32.      log_end_msg 0  
  33.      ;;  
  34.   status)  
  35.      ;;  
  36.   *)  
  37.      log_success_msg "Usage: service nginx {start|stop|status}"  
  38.      exit 1  
  39. esac  
  40.   
  41. exit 0  

(责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容