1、安裝Nginx:php
1 : wget下載: http://nginx.org/download/nginx-1.4.2.tar.gz html
2 : 進行安裝: tar -zxvf nginx-1.6.2.tar.gznginx
3 : 下載鎖須要的依賴庫文件:vim
yum install pcre後端
yum install pcre-devel瀏覽器
yum install zlib緩存
yum install zlib-develtomcat
4 : 進行configure配置:cd nginx-1.6.2 && ./configure --prefix=/usr/local/nginx 查看是否報錯服務器
5 : 編譯安裝 make && make install session
6 : 啓動Nginx:
cd /usr/local/nginx目錄下: 看到以下4個目錄
....conf 配置文件
... html 網頁文件
...logs 日誌文件
...sbin 主要二進制程序
啓動命令:/usr/local/nginx/sbin/nginx -s start 關閉(stop)重啓(reload)
成功:查看是否啓動(netstat -ano | grep 80)
失敗:可能爲80端口被佔用等。
最終:
瀏覽器訪問地址:http://192.168.1.172:80 (看到歡迎頁面便可)
server {
listen 80;
server_name localhost:80;
location / {
proxy_pass http://localhost:8080;
}
//...others
}