Prerequisites
1. Backend Server: For the purpose of this tutorial, we are using a tomcat server running on localhost on port 8080
NOTE: - When you start proxying requests, make sure the application server is started.
2.ssl certificate: We also need to configure the ssl certificate on the server. We can use let's encrypt's encryption certificate, you can get one using the program mentioned here. But for this tutorial, we will be using a self-signed certificate, which can be created by running the following command from the terminal,
$ openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout /etc/nginx/certs/cert.key -out /etc/nginx/certs/cert.crt
The next step in configuring nginx reverse proxy with ssl will be the nginx installation,
Install nginx
ubuntu
$ sudo apt-get update && sudo apt-get install nginx
# systemctl start nginx # systemctl enable nginx
Configuring nginx reverse proxy using ssl
server { listen 80; return 301 https://$host$request_uri; } server { listen 443; server_name linuxtechlab.com; ssl_certificate /etc/nginx/ssl/cert.crt; ssl_certificate_key /etc/nginx/ssl/cert.key; ssl on; ssl_session_cache builtin:1000 shared:ssl:10m; ssl_protocols tlsv1 tlsv1.1 tlsv1.2; ssl_ciphers high:!anull:!enull:!export:!camellia:!des:!md5:!psk:!rc4; ssl_prefer_server_ciphers on; access_log /var/log/nginx/access.log; location / { proxy_set_header host $host; 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_pass http://localhost:8080; proxy_read_timeout 90; proxy_redirect http://localhost:8080 https://linuxtechlab.com; } }
server { listen 80; return 301 https://$host$request_uri; }
listen 443; server_name linuxtechlab.com; ssl_certificate /etc/nginx/ssl/cert.crt; ssl_certificate_key /etc/nginx/ssl/cert.key; ssl on; ssl_session_cache builtin:1000 shared:ssl:10m; ssl_protocols tlsv1 tlsv1.1 tlsv1.2; ssl_ciphers high:!anull:!enull:!export:!camellia:!des:!md5:!psk:!rc4; ssl_prefer_server_ciphers on;
location / { proxy_set_header host $host; 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_pass http://localhost:8080; proxy_read_timeout 90; proxy_redirect http://localhost:8080 https://linuxtechlab.com; }
To check nginx, run the following command
# nginx -t
# systemctl restart nginx
The above is the detailed content of How to configure Nginx reverse proxy using SSL. For more information, please follow other related articles on the PHP Chinese website!