C:根目录的示例:
cd c:\
unzip nginx-1.23.2.zip
cd nginx-1.23.2
start nginx 启动nginx
C:\nginx-1.23.2>tasklist /fi "imagename eq nginx.exe"
Image Name PID Session Name Session# Mem Usage
=============== ======== ============== ========== ============
nginx.exe 652 Console 0 2 780 K
nginx.exe 1332 Console 0 3 112 K
nginx -s stop 快速关机
nginx -s quit 正常关机
nginx -s reload 更改配置,使用新配置启动新工作进程,正常关闭旧工作进程
nginx -s reopen 重新打开日志文件
要求必须以指定模式开始
location /abc {
default_type text/plain;
return 200 "access success";
}
在这种情况下,只要是以 /abc开头的都能被匹配到,以下访问都是正确的
http://good1230.com/abc
http://good1230.com/abc?p1=TOM
http://good1230.com/abc/
http://good1230.com/abcdef
location = /abc {
default_type text/plain;
return 200 "access success";
}
在这种情况下,访问的路径必须是以 /abc开头才能正确被访问,如下是正常的,
http://good1230.com/abc
但是如果换成其他的路径,就不对了,如
http://good1230.com/abcd
换句话说,如果url包含了正则表达式,需要用上述两个符合来标识;
location ~^/abc\w$ {
default_type text/plain;
return 200 "access success";
}
location ~*^/abc\w$ {
default_type text/plain;
return 200 "access success";
}