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 install ssl Security Certificate in lnmp Environment

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

Share

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

This article shows you how to install ssl security certificate in lnmp environment, the content is concise and easy to understand, absolutely can make you shine, through the detailed introduction of this article I hope you can gain something.

(1) I created a cert directory under/usr/local/nginx/conf, and put *******.pem and *******.key in this directory.

(2) Edit nginx.conf Mine is under vhost

listen 443 ssl;

ssl_certificate /usr/local/nginx/conf/cert/** ****.pem;

ssl_certificate_key /usr/local/nginx/conf/cert/** ****.key;

Restart nginx after configuration is complete

If it is Alibaba Cloud Virtual Machine, you need to log in to Alibaba Cloud Platform to add a security group, https access is port 443, and a port 443 needs to be opened in the security group.

Forcing http to https settings

Add server

server

{

listen 80;

server_name ****.cn;

return 301 https://$server_name$request_uri;

}

The above content is how to install ssl security certificate in lnmp environment, have you learned knowledge or skills? If you want to learn more skills or enrich your knowledge reserves, please pay attention to 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

Internet Technology

Wechat

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

12
Report