nginx配置反向代理

的配置文件link
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

**编辑前先backup**

// 备份配置文件
cp nginx.conf nginx.conf.bak


// 编辑Nginx配置文件
vim /etc/nginx/nginx.conf
// 在配置文件的http{}中添加如下配置
server {
# 端口号
listen 80;
# 域名
server_name codingme.net;
# web目录
root /webroot;
# 默认首页
index index.html
error_page 500 502 503 504 /50x.html;
location / {
}
}

配置反向代理

什么是反向代理呢?参考

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 编辑Nginx配置文件
vim /etc/nginx/nginx.conf
// 在配置文件的http{}中添加如下配置
server {
listen 80;
server_name codingme.net;
location / {
# Tomcat访问路径
proxy_pass http://127.0.0.1:8080/;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}

本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!