Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to configure Nginx for SSL certificate listening port 443

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)05/31 Report--

This article introduces the knowledge of "Nginx how to configure SSL certificate listening port 443". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

First, prepare the certificate document

I use the Aliyun symantec free version of ssl certificate. Download the certificate file and decompress it to get the following file

Create a ssl directory in the nginx- > cert directory and copy all the files above to the ssl directory

Second, modify the nginx.conf file

Fill in the following in the http {} of nginx.conf

Server {listen 443; server_name www.httpstest.com; ssl on; root html; index index.html index.htm; # replace the .pem / .key file here with its own corresponding filename ssl_certificate cert/xxxxx.pem; ssl_certificate_key cert/xxxx.key; ssl_session_timeout 5m; ssl_ciphers ECDHUR RSAUAE128MFESAUE GCM sha256 of the ecdhell.aeshl.highl.aeshl.u.aisdhel.u.ux.nullrive.rc4; ssl_protocols tlsv1 tlsv1.1 tlsv1.2. Ssl_prefer_server_ciphers on; location / {# destination address of the agent proxy_pass http://127.0.0.1:10443;}}

Finally, don't forget to restart the nginx service.

This is the end of the content of "how to configure SSL certificate listening port 443 for Nginx". Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report