OverviewNginx Reverse Proxy: Reverse proxy means that the server obtains resources from one or more groups of backend servers (such as Web servers) based on the client's request, and then returns these resources to the client. The client only knows the IP address of the reverse proxy, but does not know the existence of the server cluster behind the proxy server. The role of reverse proxy
Practice Nginx reverse proxy intranet penetration 8081 portPurpose: Hide port 8081 and access port 80 by accessing port 80 Implementation stepsWe configured the API on port 8081 and deployed it successfully. Now 8081 is open to the public, so it can be accessed Take Ubuntu environment as an example $ cd /etc/nginx/ $ vim nginx.conf Configure the reverse proxy for port 8081 under the Nginx http node as follows server { listen 80 default_server; listen [::]:80 default_server; location /api/ { proxy_pass http://127.0.0.1:8081; } location /apidocs/ { proxy_pass http://localhost:8081/api/; index swagger-ui.html; error_page 404 http://localhost:8081/api/swagger-ui.html; } } After the configuration is complete, restart the Nginx service $ service nginx restart Visit http://ip/apidocs/swagger-ui.html successfully We can turn off the server security group rules, remove the 8081 port-security group rules, and log in to Alibaba Cloud to configure. Take Alibaba Cloud as an example. The same applies to other http://ip/apidocs/swagger-ui.html is still accessible http://ip:8081/api/swagger-ui.html is not accessible So far, we have achieved the purpose of nginx reverse proxy port 8081 by accessing port 80 and proxying to port 8081 Focus on understanding the Ngnix location & proxy_pass field rules Implementation method 2: Configure upstreamUnder the http node, add the upstream node upstream demo { server ip:8080; server ip:8081; } Configure proxy_pass in the location node under the server node to: http:// + upstream name location / { proxy_pass http://demo; } Nginx configuration https support## # add cnn SSL Settings ## server{ listen 443; server_name demo.com; ssl on; ssl_certificate /etc/nginx/cert/test.pem; ssl_certificate_key /etc/nginx/cert/test.key; ssl_session_timeout 5m; location / { #Root domain name or IP proxy_pass http://demo.com; } } SummarizeThis is the end of this article about the introduction to Nginx reverse proxy. For more relevant Nginx reverse proxy content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: setup+ref+reactive implements vue3 responsiveness
>>: Example code for realizing charging effect of B station with css+svg
1. Unzip MySQL 8.0.16 The dada folder and my.ini ...
Today, when I searched for a page on Baidu, becaus...
This article example shares the specific code of ...
[LeetCode] 175.Combine Two Tables Table: Person +...
Based on Vue The core idea of this function is ...
This article records the method of sharing files ...
A few days ago, I saw an example written by @Kyle...
Table of contents Preface 1. MySQL master-slave r...
Table of contents Review of Object.defineProperty...
This article introduces some issues about HTML ta...
I recently upgraded MySQL to 5.7, and WordPress r...
1. Background We do some internal training from t...
When learning about inline-block, I found that the...
Insert image tag <IMG> The colorful web page...
Let’s build the data table first. use test; creat...