Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What about the nginx reverse proxy?

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article will explain in detail what to do about nginx reverse proxy. The editor thinks it is very practical, so I share it with you for reference. I hope you can get something after reading this article.

1. Composition of nginx configuration file

Nginx consists of the following parts

2. The use of nginx reverse proxy

The proxy_pass instruction can be proxied to the url address after proxy_pass according to the rules.

Server_name is used to define which url uses this rule

Proxy all requests under gulimaill.com

The load balancing syntax is as follows: upstream is defined as using a load balancing server in the balancing server proxy_pass.

You can use this method to proxy the gateway

Http {upstream myapp1 {server srv1.example.com; server srv2.example.com; server srv3.example.com;} server {listen 80; location / {proxy_pass http://myapp1;}} upstream gulimall {server 192.168.1.7 upstream myapp1 1000;} location / {proxy_set_header Host $host # proxy_pass http://192.168.1.7:10000; proxy_pass http://gulimall;}

Then configure gateway

Jump to merchandise service when url is * * .gulimaill.com

There is a hole here because nginx will not carry Host request headers, so you have to add proxy_set_header Host $host; configuration.

This is the end of this article on "how to do nginx reverse proxy". I hope the above content can be helpful to you, so that you can learn more knowledge. if you think the article is good, please share it out for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report