当前位置:网站首页>Alibaba cloud deploys SSL certificates
Alibaba cloud deploys SSL certificates
2022-07-24 08:14:00 【Sock is a dog】
Console finds deployable SSL certificate download nginx edition
To the server Put the certificate in the specified directory The main record here is nginx server To configure
server {
# SSL configuration
#
listen 443 ssl;
listen [::]:443 ssl;
ssl on;
ssl_certificate cert/6837488_xxxx.com.pem; # take domain name.pem Replace with the file name of your certificate .
ssl_certificate_key cert/6837488_xxxx.com.key; # take domain name.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;
root /var/www/html;
index index.html index.htm index.nginx-debian.html;
server_name www.xxx.com xxx.com;
location / {
proxy_pass http://127.0.0.1:3000;
}
}
边栏推荐
- Vscode code style notes (vetur)
- Kotlin higher order function & DSL layout persuasion Guide
- Kotlin coprocess analysis (III) -- understanding the context of coprocess
- [Google play access] payment server token acquisition
- Crypto bear market: some people expand on a large scale, some layoffs shrink
- Saining Techtalk attack and defense drill: attack combination fist "stable, accurate and ruthless" penetration
- Why is knowledge base important? This is the best answer I've ever heard
- 【线性代数】深入理解矩阵乘法、对称矩阵、正定矩阵
- CNN-VINS
- 45. Jumping game II
猜你喜欢
![[interview] Why do you need foreach with the for cycle?](/img/f1/3e2b933b91436849eaeb3812c41679.png)
[interview] Why do you need foreach with the for cycle?

Svg from entry to regret, why not learn it earlier (graphic version)

Image feature Harris corner detection

SVM linear separable linear support vector machine

13. Unity2d horizontal version of two-way platform that can move up, down, left and right (two-way walking + movable + independent judgment) + random platform generation
![[MySQL] installation tutorial and master-slave configuration](/img/79/0ad3f68b69a0a03a62422d4cc70035.png)
[MySQL] installation tutorial and master-slave configuration
![[matlab] (IV) application of MATLAB in linear algebra](/img/c8/97fddb4105008990173247b1b4a155.png)
[matlab] (IV) application of MATLAB in linear algebra

Learning dynamic Siamese network for visual object tracking full text translation

MySQL --- 子查询 - 标量子查询

Digital twin demonstration project -- Talking about simple pendulum (4) IOT exploration
随机推荐
33 introduction to sparksql, dataframe and dataset
Learn - use do... While loop according to the formula e=1+1/1+ 1/2!+ 1/3!+…+ 1/n! Calculate the value of E (accuracy is 1e-6)
NFT是什么?一篇文章搞懂NFT的概念
Telecom Customer Churn Prediction challenge baseline [AI competition]
Workspace creation
Wechat payment V3 version of openresty implementation and pit avoidance Guide (service side)
how to add square on screenshot
VIDAR team team exclusive interview: as we do, as you know
mysql使用explain分析sql执行计划帮助查找性能瓶颈
QT | string generation QR code function
Hegong sky team vision training day4 - traditional vision, contour recognition
Summary of study notes (I)
The difference between online learning and offline learning
[Linux] Oracle VirtualBox installation CentOS 8
Crypto bear market: some people expand on a large scale, some layoffs shrink
Project practice - document scanning OCR recognition
Figure New Earth: how the RVT format BIM model modeled by Revit can accurately match the map with texture
FPGA integrated project - image edge detection system
[interview] Why do you need foreach with the for cycle?
Vscode code style notes (vetur)