nginx安裝+虛擬主機配置+UWSGI


安裝php

(1)在線安裝html

    $sudo apt-get install nginxpython

    Nginx的版本是1.2.1nginx

    ubuntu安裝Nginx以後的文件結構大體爲:web

     全部的配置文件都在/etc/nginx下,而且每一個虛擬主機已經安排在了/etc/nginx/sites-available下shell

    啓動程序文件在/usr/sbin/nginx
ubuntu

    日誌放在了/var/log/nginx中,分別是access.log和error.log
網絡

    並已經在/etc/init.d/下建立了啓動腳本nginx
app

     默認的虛擬主機的目錄設置在了/usr/share/nginx/www
dom

(2)源碼安裝也比較簡單,全部文件默認放到/usr/local/nginx目錄,也能夠本身指定位置

啓動

   (1)在線安裝的啓動過程

      $sudo /etc/init.d/nginx start    #或者下面

      sudo service nginx start

   (2)源代碼安裝的啓動過程

      $cd /usr/local/nginx

      $sbin/nginx

虛擬主機

(1)在site-ennable下面建立文件ubuntu.nobsu.net.conf文件,編輯以下:

server {
	listen       80;
	server_name ubuntu.nobsu.net;
	index index.html index.htm index.php;
	root  /data/www/ubuntu_nobsu_net;
 
	log_format ubuntu.nobsu.net '$remote_addr - $remote_user [$time_local] $request'
	'$status $body_bytes_sent $http_referer '
	'$http_user_agent $http_x_forwarded_for';
	access_log  /data/log/ubuntu.nobsu.net.log ubuntu.nobsu.net;
}


(2)建立可訪問目錄

   /data/www/ubuntu_nobsu_net/index.html       

    hello nginx!!

(3)編輯測試域名:

        具體過程以下:

        一、修改hosts

        sudo gedit /etc/hosts

        二、添加解析記錄( . )

        完整案例:127.0.0.1 localhost.localdomain localhost

        簡潔記錄:127.0.0.1 localhost

        三、保存後重啓網絡

        sudo /etc/init.d/networking restart

(4)訪問:http://ubuntu.nobsu.net/  

         ok


uwsgi部署python web項目

命令啓動:

uwsgi --http :9090 --wsgi-file foobar.py

ini文件方式,建立ini文件:

[uwsgi]
socket = 127.0.0.1:3031
chdir = /data/www/yiqiwanshua-py/
wsgi-file = WSGI.py
processes = 2
threads = 1
stats = 127.0.0.1:9191

前臺啓動:

uwsgi uwsgi.ini

後臺啓動:

uwsgi /app/dataservice/uwsgi.ini -d /app/dataservice/uwsgi.log

看官方文檔,很簡單:http://uwsgi-docs.readthedocs.org/en/latest/WSGIquickstart.html


[參考文獻]

http://www.cnblogs.com/languoliang/archive/2013/04/01/nginx.html 安裝

http://www.neoease.com/nginx-virtual-host/ 虛擬主機配置

相關文章
相關標籤/搜索