Nginx服务器常用配置及命令

nginx

常用指令

1
2
3
4
5
6
7
8
// 启动
start nginx

// 重新载入配置文件
nginx -s stop

// 停止
nginx -s reload

用nginx反向代理解决跨域

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
server {
listen 8080; // 开启服务器所需的端口号
server_name localhost; // 服务器名
location / {
root E:\url\BusinessCard; // 文件目录
index index.html; // 主页
}
// 反向代理
location /igs/ {
proxy_redirect off;
proxy_pass http://www.guizhou.gov.cn/igs/; //
}
// 反向代理配置以后,在前端的请求接口就不要写完整地址了,只需要写上/igs/...即可
error_page 500 502 503 504 /50x.html;
}
0%