1. 程式人生 > >Nginx初嘗試與教程

Nginx初嘗試與教程

安裝

下載地址:http://nginx.org/en/download.html

下載解壓到 D:nginx/

CMD執行命令:

D:
cd nginx
start nginx

Nginx基礎命令

檢視nginx的版本號:nginx -v
驗證配置是否正確: nginx -t
啟動命令:start nginx
快速停止命令:nginx -s stop
正常停止命令:nginx -s quit
配置檔案修改過載命令:nginx -s reload

配置

開啟 conf 目錄下的 nginx.conf 檔案,並進行配置

// 最簡單的反向代理 node 地址 http://localhost:8081;
server {
	listen	80;
	server_name localhost;
	location / {
		proxy_pass http://localhost:8081;
	}
}

教程

前端必會的 Nginx入門文字與視訊教程(共11集)