Implementation of nginx proxy port 80 to port 443

Implementation of nginx proxy port 80 to port 443

The nginx.conf configuration file is as follows

user nginx;
worker_processes 1;

error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;


events {
  worker_connections 1024;
}


http {
  include /etc/nginx/mime.types;
  default_type application/octet-stream;

  log_format main '$remote_addr - $remote_user [$time_local] "$request" '
           '$status $body_bytes_sent "$http_referer" '
           '"$http_user_agent" "$http_x_forwarded_for"';

  access_log /var/log/nginx/access.log main;

  sendfile on;
  #tcp_nopush on;

  keepalive_timeout 65;

  #gzip on;

  include /etc/nginx/conf.d/*.conf;
 
 # The attributes starting with ssl in the following attributes are related to certificate configuration. Please configure other attributes according to your needs.
 server {
 listen 443 ssl; #The SSL protocol access port number is 443. If SSL is not added here, Nginx may fail to start.
 server_name localhost; #Change localhost to the domain name bound to your certificate, for example: www.example.com.
 root html;
 index index.html index.htm;
 ssl_certificate /etc/nginx/huashengshu.top.pem; #Replace with the file name of your certificate.
 ssl_certificate_key /etc/nginx/huashengshu.top.key; #Replace with the key file name of your certificate.
 ssl_session_timeout 5m;
 ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4; #Use this encryption suite.
 ssl_protocols TLSv1 TLSv1.1 TLSv1.2; #Use this protocol for configuration.
 ssl_prefer_server_ciphers on;  
 location / {
  root /etc/nginx/hss; #Site directory.
  index index.html index.htm;  
 }
 }
 

 server {
 listen 80;
 server_name huashengshu.top;
 rewrite ^(.*)$ https://${server_name}$1 permanent; 
 }

}

What works is

 server {
 listen 80;
 server_name huashengshu.top;
 rewrite ^(.*)$ https://${server_name}$1 permanent; 
 }

This is the end of this article about how to use nginx proxy port 80 to port 443. For more information about how to use nginx proxy port 80 to port 443, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • 18 Nginx proxy cache configuration tips that operators must know (which ones do you know?)
  • Summary of some common configurations and techniques of Nginx
  • Sharing tips on limiting the number of connections in nginx
  • A brief introduction to some tips for optimizing Nginx servers
  • Nginx Rewrite rules and usage introduction and skills examples
  • Nginx forwarding based on URL parameters
  • Detailed explanation of several error handling when Nginx fails to start
  • Summary of common Nginx techniques and examples

<<:  js canvas implements verification code and obtains verification code function

>>:  MySQL8 Installer version graphic tutorial

Recommend

Solution to the MySQL server has gone away error

MySQL server has gone away issue in PHP 1. Backgr...

js implements custom drop-down box

This article example shares the specific code of ...

Example of using Dockerfile to build an nginx image

Introduction to Dockerfile Docker can automatical...

How to use dynamic parameters and calculated properties in Vue

1. Dynamic parameters Starting from 2.6.0, you ca...

Example of converting JS one-dimensional array into three-dimensional array

Today I saw a friend asking a question in the Q&a...

Today I will share some rare but useful JS techniques

1. Back button Use history.back() to create a bro...

Mount the disk in a directory under Ubuntu 18.04

Introduction This article records how to mount a ...

Using jQuery to implement the carousel effect

What I bring to you today is to use jQuery to imp...

JS array deduplication details

Table of contents 1 Test Cases 2 JS array dedupli...

HTML Tutorial: Definition List

<br />Original text: http://andymao.com/andy...

How to use IDEA to create a web project and publish it to tomcat

Table of contents Web Development 1. Overview of ...

Detailed tutorial on integrating Apache Tomcat with IDEA editor

1. Download the tomcat compressed package from th...

React+Koa example of implementing file upload

Table of contents background Server Dependencies ...

Prevent HTML and JSP pages from being cached and re-fetched from the web server

After the user logs out, if the back button on the...