1. 다운로드:
http://nginx.org/download/nginx-1.8.0.zip
2. 압축 해제:
D:/nginx-1.8.0
3.
cd nginx start nginx
일반 명령:
nginx -s stop // 停止nginx nginx -s reload // 重新加载配置文件 ,只能在运行时执行 nginx -s quit // 退出nginx
4. 루트 디렉터리 수정:
location / { root D:/html; index index.html index.htm inde.php; }
location ~ \.php$ { root D:/html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; }
위 내용은 관련 내용을 포함하여 Windows에서의 nginx 구성을 소개합니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.