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 HTTPS for Nginx server

2025-02-28 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly shows you "Nginx server how to configure HTTPS", the content is easy to understand, clear, hope to help you solve doubts, the following let the editor lead you to study and learn "Nginx server how to configure HTTPS" this article.

Directory location:

/ usr/local/www/nginx/conf (for reference only)

Server {listen 443 ssl; server_name localhost; ssl_certificate server.crt; # cert.pem; ssl_certificate_key server.key; # cert.key; ssl_session_cache shared:SSL:1m; ssl_session_timeout 5m; ssl_ciphers Higg / ssl_prefer_server_ciphers on; location / {root / home/share; autoindex on; index index.html index.htm;}}

These are the company servers.

Check that there is no problem with the configuration file and read the Nginx again.

Nginx-t & & nginx-s reload1 listen 443; listens port 443 2 ssl on; opens SSL module 3 ssl_protocols SSLv2 SSLv3 TLSv1; specifies SSL to use protocol 4 ssl_ciphers HIGH configuration ssl_prefer_server_ciphers on; configuration server password that depends on SSLv3 and TLSv1 protocol will take precedence over client password 6 ssl_session_timeout 10m; set session timeout 7 ssl_certificate xxx.cer Configure Certificate 8 ssl_certificate_key xxx.key; configure key above is all the content of this article "how to configure HTTPS on Nginx Server". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!

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

Servers

Wechat

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

12
Report