• deploy uwsgi with niginx on ubuntu


    first download stable version uwsgi from http://projects.unbit.it/uwsgi/
    then follow the article http://projects.unbit.it/uwsgi/wiki/RunOnNginx
    CAUTION:the offical site support nginx 0.7x ,not the newest 0.8x nginx,we advise you download the stable nginx 0.7x for use
    currently nginx-0.7.67 is the newest stable version,you can found on http://nginx.org/
    put two app tar file in same directory and untar them

    before install nginx with uwsgi moudle you need install PCRE library first refer bellow article
    http://www.herbertyang.com/2009/11/08/debian-ubuntu-linux-install-pcre.html
    1sudo apt-get update
    2sudo apt-get install
    libpcre3 libpcre3-dev
    你可能还需要安装

    sudo apt-get install openssl libssl-dev


    Move yourself in the nginx-0.7.x directory and ./configure nginx to add
    the uwsgi handler to its module list:

    ./configure --add-module=../uwsgi-0.9.5.4/nginx/
    make
    sudo make install

    whereis nginx  ==>/usr/local/nginx
    add uwsgi_params file(you will find it in the 'nginx' directory of uwsgi the distribution) to /usr/local/nginx
    mlzboy@mlzboy-mac:~/下载/uwsgi-0.9.5.4/nginx$ sudo cp uwsgi_params /usr/local/nginx/conf/

    edit nginx.conf in a location directive


    build uwsgi
    go to the mlzboy@mlzboy-mac:~/下载/uwsgi-0.9.5.4
    sudo apt-get install libxml2-dev
    make -f Makefile.Py26
    mlzboy@mlzboy-mac:~/my/idea/search$ sudo uwsgi -s /tmp/uwsgi.sock -C -w uwsgi_test

    whereis nginx
    mlzboy@mlzboy-mac:/usr/local/nginx$ sudo ./sbin/nginx -c ./conf/nginx.conf
    mlzboy@mlzboy-mac:/usr/local/nginx$ pstree -p|grep nginx
    mlzboy@mlzboy-mac:~/my/idea/search$ sudo uwsgi -s /tmp/uwsgi.sock -C -w uwsgi_test



  • 相关阅读:
    Django笔记
    在vue框架里添加bootstrap与axios
    Mysql8和Mysql5.7部署同一服务器
    docker迁入迁出mysql
    mysql导出csv
    Yearning启停脚本(开机自启)
    go 语言的基础知识
    阅读《深入理解Kafka核心设计与实践原理》第五章 日志存储
    阅读《深入理解Kafka核心设计与实践原理》第四章 主题与分区
    阅读《深入理解Kafka核心设计与实践原理》第三章 消费者
  • 原文地址:https://www.cnblogs.com/lexus/p/1781772.html
Copyright © 2020-2023  润新知