nginx
# nginx 使用
# windows 使用
以管理员身份启动 cmd 命令面板,进入 nginx 目录 输入 start nginx 启动 浏览器地址栏输入网址http://localhost:80
# windows 命令
- 修改 nginx 配置后执行检查配置是否正确
nginx -t
启动 Nginx
start nginx
关闭 Nginx
nginx -s stop
nginx -s quit
重启 Nginx
nginx -s reload
查看 nginx 进程
tasklist /fi "imagename eq nginx.exe"
杀死 nginx 进程taskkill /f /pid 25720 /pid 7556
# 配置
server {
listen 80; # 端口
server_name localhost; # 默认的访问路径
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html;
index index.html index.htm;
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13
# https 证书配置
server {
listen 8081 ssl; # 监听端口 ssl 是配置 https 证书必备
server_name localhost;
location / {
root html;
index index.html index.htm;
}
location /api{
proxy_pass http://127.0.0.1:3000/api; ## api代理
}
ssl_certificate server.crt; #证书位置 例: E:\software\nginx-1.16.1\conf\server.crt
ssl_certificate_key server.key; #私钥位置 例: E:\software\nginx-1.16.1\conf\server.key
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# nginx 启动小助手
修改第三行和第四行
@echo off
chcp 65001
D:
cd D:\SoftWare\nginx-1.18.0
:menu
echo -------Nginx启动助手---------
echo 1."重启服务器"
echo 2."启动服务器"
echo 3."关闭服务器"
@echo off
set /p choose="请选择:"
if %choose%==1 (goto rs)
if %choose%==2 (goto start)
if %choose%==3 (goto stop)
:: 不合法输入符号
if %choose%!=1 || %choose%!=2 || %choose%!=3 ( goto menu)
:: 重启服务器
@echo off
:rs
::tskill nginx
taskkill /f /im nginx.exe
echo 已终止所有ginx进程
nginx.exe -t
nginx.exe -v
start nginx.exe
echo nginx已启动
( goto menu )
::启动服务器
@echo off
:start
nginx.exe -t
nginx.exe -v
start nginx.exe
echo nginx已启动
( goto menu )
::关闭服务器
@echo off
:stop
::tskill nginx
taskkill /f /im nginx.exe
echo 已终止所有ginx进程
( goto menu )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
更新时间: 12/21/2021, 3:54:38 PM