ubuntu 12.04 server编译安装nginx

tar -xvf zlib-1.2.8.tar.gz
cd zlib-1.2.8
./config
make
make install

above is for zlib(refers http://zlib.net/ for zlib),and below is for pcre-devel

apt-get install libpcre3 libpcre3-dev

then, compile and install nginx(get the newest stable source code from nginx.org)

virtualenv nginx_env
cd nginx_env
source bin/activate
tar -xvf nginx-1.6.2.tar.gz
cd nginx-1.6.2
./configure
make
make install

 

output log with "make"

Configuration summary
+ using system PCRE library
+ OpenSSL library is not used
+ using builtin md5 code
+ sha1 library is not found
+ using system zlib library

nginx path prefix: "/usr/local/nginx"
nginx binary file: "/usr/local/nginx/sbin/nginx"
nginx configuration prefix: "/usr/local/nginx/conf"
nginx configuration file: "/usr/local/nginx/conf/nginx.conf"
nginx pid file: "/usr/local/nginx/logs/nginx.pid"
nginx error log file: "/usr/local/nginx/logs/error.log"
nginx http access log file: "/usr/local/nginx/logs/access.log"
nginx http client request body temporary files: "client_body_temp"
nginx http proxy temporary files: "proxy_temp"
nginx http fastcgi temporary files: "fastcgi_temp"
nginx http uwsgi temporary files: "uwsgi_temp"
nginx http scgi temporary files: "scgi_temp"

 

=========================test it ==========================

/usr/local/nginx/nginx

 just open page 'http://127.0.0.1' in web browser and see what happens.

 

and one more effort, let's try to use nginx with gunicorn.

first, install gunicorn.

pip install gunicorn

 then, django

easy_install django

next, start a project ,and run it with gunicorn

django-admin startproject test_gn
cd test_gn
gunicorn -D test_gn.wsgi

finally ,configure nginx

vi /usr/local/nginx/conf/nginx.conf

and add a server like below down

server{
        listen localhost:88;
        location / {
           proxy_pass http://127.0.0.1:8000;
        }

        location /static/ {
             autoindex:on;
             alias absolute/path/to/static/dir;
         }
    }

 

restart the nginx server(kill the older progress and start a new one)

 

------------------编译源码有时候不一定能解决问题---------------

可以参考这个来升级nginx: https://www.binss.me/blog/install-lastest-nginx-on-ubuntu/

转载于:https://www.cnblogs.com/Tommy-Yu/p/4036141.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值