NGINX詳細搭建流程,入門(LINUX)

  (使用過程當中遇到問題,隨時與我溝通)

在上家公司都是運維安裝nginx,到新公司後代碼開發完成部署 測試服務器要求本身裝nginx,研究了很久安裝好以後,到正式上線還要本身安裝,索性把安裝步驟本身記載下來(好大一部分都是在網站找的)。
 一,安裝
  1.選定源碼目錄
能夠是任何目錄,本文選定的是/usr/local/src
cd/usr/local/src
 2.安裝PCRE庫
ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/下載最新的PCRE源碼包,使用下面命令下載編譯和安裝PCRE包:
 
cd/usr/local/src
wgetftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.33.tar.gz
tar-zxvfpcre-8.21.tar.gz
cdpcre-8.21
./configure
make
makeinstall
 3.安裝zlib庫
http://zlib.net/zlib-1.2.8.tar.gz下載最新的zlib源碼包,使用下面命令下載編譯和安裝zlib包:
cd/usr/local/src
wgethttp://zlib.net/zlib-1.2.8.tar.gz
tar-zxvfzlib-1.2.8.tar.gz
cdzlib-1.2.8
./configure
make
makeinstall
 4.安裝ssl(某些vps默認沒裝ssl)
cd/usr/local/src
wgethttp://www.openssl.org/source/openssl-1.0.1c.tar.gz
tar-zxvfopenssl-1.0.1c.tar.gz
 5.安裝nginx
Nginx通常有兩個版本,分別是穩定版和開發版,您能夠根據您的目的來選擇這兩個版本的其中一個,下面是把Nginx安裝到/usr/local/nginx目錄下的詳細步驟:
cd/usr/local/src
wgethttp://nginx.org/download/nginx-1.4.2.tar.gz
tar-zxvfnginx-1.4.2.tar.gz
cdnginx-1.4.2
./configure--sbin-path=/usr/local/nginx/nginx\
--conf-path=/usr/local/nginx/nginx.conf\
--pid-path=/usr/local/nginx/nginx.pid\
--with-http_ssl_module\
--with-pcre=/usr/local/src/pcre-8.21\
--with-zlib=/usr/local/src/zlib-1.2.8\
--with-openssl=/usr/local/src/openssl-1.0.1c
make
makeinstall
--with-pcre=/usr/src/pcre-8.21指的是pcre-8.21的源碼路徑。
--with-zlib=/usr/src/zlib-1.2.7指的是zlib-1.2.7的源碼路徑。
安裝成功後/usr/local/nginx目錄下以下
fastcgi.confkoi-winnginx.conf.default
fastcgi.conf.defaultlogsscgi_params
fastcgi_paramsmime.typesscgi_params.default
fastcgi_params.defaultmime.types.defaultuwsgi_params
htmlnginxuwsgi_params.default
koi-utfnginx.confwin-utf
6.啓動
確保系統的80端口沒被其餘程序佔用,運行/usr/local/nginx/nginx命令來啓動Nginx,
netstat-ano|grep80
若是查不到結果後執行,有結果則忽略此步驟(ubuntu下必須用sudo啓動,否則只能在前臺運行)
sudo/usr/local/nginx/nginx
打開瀏覽器訪問此機器的IP,若是瀏覽器出現Welcometonginx!則表示Nginx已經安裝並運行成功。
 二,簡單配置(nginx後掛resin或者tomcat)
(標紅部分爲本身新加的配置)
注:只是簡單的配置
http{
upstreammgame-crm{
server10.10.0.103:9080;
server10.10.0.104:9080;
}
includemime.types;
default_typeapplication/octet-stream;
#log_formatmain'$remote_addr-$remote_user[$time_local]"$request"'
#'$status$body_bytes_sent"$http_referer"'
#'"$http_user_agent""$http_x_forwarded_for"';
#access_loglogs/access.logmain;
sendfileon;
#tcp_nopushon;
#keepalive_timeout0;
keepalive_timeout65;
#gzipon;
server{
listen80;
server_namelocalhost;
#charsetkoi8-r;
#access_loglogs/host.access.logmain;
location/{
roothtml;
indexindex.htmlindex.htm;
proxy_passhttp://mgame-crm;
proxy_redirectoff;
proxy_set_headerX-Forwarded-For$proxy_add_x_forwarded_for;
proxy_set_headerX-Real-IP$remote_addr;
proxy_set_headerHost$http_host;
access_logoff;
}
#error_page404/404.html;
#redirectservererrorpagestothestaticpage/50x.html
#
error_page500502503504/50x.html;
location=/50x.html{
roothtml;
}
#proxythePHPscriptstoApachelisteningon127.0.0.1:80
#
#location~\.php${
#proxy_passhttp://127.0.0.1;
#}
#passthePHPscriptstoFastCGIserverlisteningon127.0.0.1:9000
#
#location~\.php${
#roothtml;
#fastcgi_pass127.0.0.1:9000;

原文:http://www.51testing.com/html/04/n-863804.htmlphp

 

您能夠考慮給小小飛發個小額紅包以資鼓勵
相關文章
相關標籤/搜索