background Now the company's projects are developed in a way that the front-end and back-end are separated. Sometimes, due to some new development requirements or bug fixes, I want the front-end to connect directly to my local development environment for debugging, but I don't have the front-end code, so I can only test it through the test environment deployed by the front-end. The easiest way is to directly change the host to point the domain name of the back-end test environment to my local IP. This is very easy to do for HTTP protocol services, but the company's test environment is all HTTPS, and my local service is HTTP protocol. Even if the host is changed, the request will fail due to the different protocols, so the local service needs to be upgraded to HTTPS. plan In fact, springboot itself supports HTTPS (howto-configure-ssl), but this requires changing the project code, which is not very elegant. So I want to use Issuance of certificates First, you need to generate a set of certificates for nginx's SSL configuration. Use the Root certificate generation # Generate an RSA private key openssl genrsa -out root.key 2048 # Generate a root certificate using the private key openssl req -sha256 -new -x509 -days 365 -key root.key -out root.crt \ -subj "/C=CN/ST=GD/L=SZ/O=lee/OU=work/CN=fakerRoot" Server Certificate Generation # Generate an RSA private key openssl genrsa -out server.key 2048 # Generate a certificate signing request file with SAN extension openssl req -new \ -sha256 \ -key server.key \ -subj "/C=CN/ST=GD/L=SZ/O=lee/OU=work/CN=xxx.com" \ -reqexts SAN \ -config <(cat /etc/pki/tls/openssl.cnf \ <(printf "[SAN]\nsubjectAltName=DNS:*.xxx.com,DNS:*.test.xxx.com")) \ -out server.csr # Use the previously generated root certificate to issue openssl ca -in server.csr \ -md sha256 \ -keyfile root.key \ -cert root.crt \ -extensions SAN \ -config <(cat /etc/pki/tls/openssl.cnf \ <(printf "[SAN]\nsubjectAltName=DNS:xxx.com,DNS:*.test.xxx.com")) \ -out server.crt This gives us three key files:
Note: The domain name of the generated server certificate must support the domain name accessed by the test environment, otherwise the browser will prompt that the certificate is not secure. nginx configuration For convenience, we directly use nginx.conf server { listen 443 ssl; server_name _; ssl_certificate "/usr/local/nginx/ssl/server.pem"; ssl_certificate_key "/usr/local/nginx/ssl/server.key"; location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header Host $http_host; proxy_set_header X-NginX-Proxy true; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; proxy_pass http://127.0.0.1:3000; proxy_redirect off; proxy_http_version 1.1; } } Specify the server's certificate and private key by configuring start up docker run -d --name https -p 443:443 -v ~/forword/ssl:/usr/local/nginx/ssl -v ~/forword/config/nginx.conf:/etc/nginx/conf.d/default.conf nginx Mount the nginx configuration and certificate-related files to the corresponding directory and expose port 443, so that you can access the local development environment through https after the service is started. Install the root certificate Since the service certificate is self-signed and will not be trusted by the browser, Open Chrome browser->Settings->Advanced->Manage Certificates Trusted Root Certification Authorities -> Import Select the previously generated root certificate Modify host When debugging is needed, you only need to start the local service, resolve the domain name to be tested in the host to the IP of the postscript In fact, two solutions have been mentioned in this article. In fact, there are other solutions, such as using The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Using js to implement the two-way binding function of data in Vue2.0
>>: Mini Program to Implement Calculator Function
Table of contents Example Code Rendering Code Ana...
COALESCE is a function that refers to each parame...
Most websites nowadays have long pages, some are ...
Discovering Needs If only part of an area is allo...
1. MySQL master-slave asynchrony 1.1 Network Dela...
This article example shares the specific code of ...
Overview Volume is the abstraction and virtualiza...
First look at the effect: html <a href="#...
Background: Linux server file upload and download...
This article records the installation and configu...
HTML 4 HTML (not XHTML), MIME type is text/html, ...
The following two errors were encountered when co...
This article example shares the specific code of ...
1. Overall steps At the beginning, we introduced ...
The command format for mysql login is: mysql -h [...