当前位置: 首页 >  冷冻的粽子煮多久能熟

冷冻的粽子煮多久能熟

  • 2024-05-19 16:29:05

「运维」利用云服务提供商的免费证书,发布https应用

我们如果要在服务器上发布 ***_bundle.crt; ssl_certificate_key c:/webroot/nginx/conf/ssl/***.iqidi***.key;#先配置签名证书,再配置加密证书,签名加密证书私钥 key 为同一个!ssl_session_timeout 5m; ssl_protocols tlsv1.2;ssl_ciphers sm2-with-sms4-sm3:ecdh:aesgcm:high:medium:!rc4:!dh:!md5:!anull:!enull; ssl_prefer_server_ciphers on;location / { root html/collectdataapp;index index.html index.htm; } }

这样我们在 conf/nginx.conf 文件中设置端口侦听,就可以了

server {listen 8080 ssl;server_namelocalhost;#charset koi8-r;#access_loglogs/host.access.logmain;location / {root html/collectdataapp;indexindex.html index.htm;try_files $uri $uri/ /index.html =404;}}

如果是不想独立分开两个配置文件,也可以把ssl证书位置信息写在conf/nginx.conf 文件中,也是可以的,如下所示。

server {listen 9002 ssl;server_namelocalhost;ssl_certificate c:/webroot/nginx/conf/ssl/***.iqidi***_bundle.crt; ssl_certificate_key c:/webroot/nginx/conf/ssl/***.iqidi***.key;ssl_session_cacheshared:ssl:1m;ssl_session_timeout5m;ssl_ciphershigh:!anull:!md5;ssl_prefer_server_cipherson;#charset koi8-r;#access_loglogs/host.access.logmain;location / {root html/assetcheckapp;indexindex.html index.htm;try_files $uri $uri/ /index.html =404;}}

这样就合并了ssl设置和端口侦听的文件在一起,测试后正常使用了。

以上就是关于利用云服务提供商的免费证书,在服务器上发布***