question After Nginx reverse proxy, the Tomcat application obtains the Nginx host through For example, on a certain server, Tomcat's port number is 8080, Nginx's port number is 80, and Nginx reverse proxy is port 8080. server { listen 80; location / { proxy_pass http://127.0.0.1:8080; } } On another machine, use a browser to open System.out.println(request.getHeader("host")); turn out:
Causes of the problem Nginx's reverse proxy is actually a bridge between the client and the real application server. The client (usually a browser) accesses the Nginx server, and Nginx then accesses the Web application server. For the Web application, the client of this HTTP request is Nginx rather than the real client browser. If no special processing is done, the Web application will regard Nginx as the request client, and the client information obtained is some information about Nginx. Problem Solving Nginx configures HTTP Header. Host contains the client's real domain name and port number proxy_set_header Host $http_host; Tomcat obtains client information from the HTTP Header passed by Nginx. <Valve className="org.apache.catalina.valves.RemoteIpValve" /> Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links You may also be interested in:
|
>>: How to bypass unknown field names in MySQL
Setting the font for the entire site has always b...
Table of contents 1. Experimental Environment 2. ...
Run cmd with administrator privileges slmgr /ipk ...
Linear-gradient background-image: linear-gradient...
Table of contents Preface Why do we need to encap...
Preface I believe most people have used MySQL and...
<br />Generally speaking, the file organizat...
The specific upgrade script is as follows: Dynami...
Table of contents 1. Props Parent >>> Ch...
question Nginx takes $remote_addr as the real IP ...
Preface Here are the steps to install and configu...
In the previous article, it was mentioned that th...
Automated build means using Docker Hub to connect...
To display the JSON data in a beautiful indented ...
Table of contents Preface 1. Define label style 2...