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

How to access the domain name through nginx proxy

2025-01-31 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

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

This article mainly introduces how to access the domain name through the nginx agent, the article is very detailed, has a certain reference value, interested friends must read it!

How to access the domain name through nginx proxy

Locate nginx/conf/nginx.conf and make the following key configuration:

Upstream xx {# configure the upstream node, where the node name is "xx" server 116.255.111.111server 8080;} server {listen 80; server_name www.xxx.xx; # here configure the domain name location / {proxy_pass http://xx; # that the nginx needs to proxy specify the reverse proxy for the upstream node "xx" proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr configured above Proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;}}

Modify the tomcat server.xml file

Pay attention to the red font section. Note that name for your domain name path must be blank. Otherwise, this item cannot be accessed.

The above is all the contents of the article "how to access the domain name through the nginx agent". Thank you for reading! Hope to share the content to help you, more related knowledge, welcome to follow the industry information channel!

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

Servers

Wechat

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

12
Report