nginx设置反向代理
时间: 2023-11-29 08:47:14 浏览: 94
以下是使用nginx设置反向代理的步骤:
1.安装nginx
在Ubuntu系统上,可以使用以下命令安装nginx:
```shell
sudo apt-get update
sudo apt-get install nginx
```
2.配置反向代理
打开nginx配置文件`/etc/nginx/nginx.conf`,在http块中添加以下内容:
```shell
server {
listen 80;
server_name springboot.com;
location / {
proxy_pass http://127.0.0.1:8080;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}
```
其中,`listen`指定监听的端口,`server_name`指定域名,`location`指定请求的URL路径,`proxy_pass`指定反向代理的目标地址,`proxy_set_header`指定请求头信息。
3.重启nginx
完成配置后,使用以下命令重启nginx:
```shell
sudo service nginx restart
```
这样,当访问`http://springboot.com/`时,nginx会将请求转发到`http://127.0.0.1:8080`。
阅读全文