windows下nginx搭建網站的方法:
1.打開nginx安裝目錄,找到“nginx.conf”配置文件。
2.把本機的80端口的訪問請求轉到我們自己的網站主頁上,配置如:
server {
listen 80;
server_ name localhost;
#charset koi8-r:
access_ 1og 1ogs/host.access.1og main;
location / {
root D:/MyWebApps/; //改成nginx根目錄
index index.html index.htm;
]
3.在nginx.exe文件的目錄下打開cmd命令窗口,執行命令:
nginx.exe -s reload
4.把準備好的網站程序放進nginx根目錄即可。