nginx的安装与配置方法:
1.下载:
进入网址http://nginx.org/en/download.html,因为我现在是windows7环境,所以就下载nginx/Windows-1.2.6版本了。
2.解压到d:盘下,然后cmd-cd到nginx加压目录下,直接nginx,出现停留光标即启动完成,如果需要停止,在进程中杀死该进程或者:(1)停止:nginx -s stop(2)停止并退出:nginx -s quit;但是当修改了配置文件,不必重启,只需要重新加载即可:nginx -s reload;
3.打开nginx的conf目录下的配置文件nginx.conf,
server {
listen 80;
server_name localhost;
location / {
root html;
index index.html index.htm;
}
看着配置就行。
4.在浏览器输入localhost,打开看到“Welcome to nginx!”这样的字眼即nginx安装与配置成功。