1.下載 nginx
http://nginx.org
2.啟動
解壓至c:\nginx荸百,運行nginx.exe(即nginx -c conf\nginx.conf),默認(rèn)使用80端口滨攻,日志見文件夾C:\nginx\logs
或者 start nginx
3.使用
http://localhost
4.關(guān)閉
nginx -s quit
nginx -s stop
5. 常用配置
Nginx.conf代碼
http {
server {
#1.偵聽80端口
listen 80;
location / {
# 2. 默認(rèn)主頁目錄在nginx安裝目錄的html子目錄够话。
root html;
index index.html index.htm;
# 3. 沒有索引頁時,羅列文件和子目錄
autoindex on;
autoindex_exact_size on;
autoindex_localtime on;
}
# 4.指定虛擬目錄
location /tshirt {
alias D:\programs\Apache2\htdocs\tshirt;
index index.html index.htm;
}
}
# 5.虛擬主機www.emb.info配置
server {
listen 80;
server_name www.emb.info;
access_log emb.info/logs/access.log;
location / {
index index.html;
root emb.info/htdocs;
}
}
}
6.nginx常用命令
nginx -s stop 強制關(guān)閉
nginx -s quit 安全關(guān)閉
nginx -s reload 改變配置文件的時候光绕,重啟nginx工作進程女嘲,來時配置文件生效
nginx -s reopen 打開日志文件
關(guān)注一波!喜歡一波诞帐!本人是前端菜鳥欣尼,正在做自己的個人博客鄧鵬的博客, 使用的技術(shù) vue + koa2 + mysql + php + nginx停蕉!