ssl-certificate

Enabling SSL on localhost IIS

只谈情不闲聊 提交于 2020-11-30 12:57:26
问题 I run localhost on my Windows 8.1 (Bootcamp on Mac) and need to enable ssl. I have already default server certificates on 127.0.0.1 and localhost. I have the localhost one assigned to my websites on port 443. https still returns security error so I need to work on http My websites run on 44300 port (eg. localhost:44300) I tried to bind the certificate to 44300, still it didn't work. How to make my locahost to work with https? Thanks EDIT The certificate is issued by localhost and is within

Enabling SSL on localhost IIS

安稳与你 提交于 2020-11-30 12:56:26
问题 I run localhost on my Windows 8.1 (Bootcamp on Mac) and need to enable ssl. I have already default server certificates on 127.0.0.1 and localhost. I have the localhost one assigned to my websites on port 443. https still returns security error so I need to work on http My websites run on 44300 port (eg. localhost:44300) I tried to bind the certificate to 44300, still it didn't work. How to make my locahost to work with https? Thanks EDIT The certificate is issued by localhost and is within

Generate CRT & KEY ssl files from Let's Encrypt from scratch

家住魔仙堡 提交于 2020-11-30 02:51:47
问题 I'd like to generate a CRT/KEY couple SSL files with Let's Encrypt (with manual challenge). I'm trying something like this : certbot certonly --manual -d mydomain.com But I only get these files in my /etc/letsencrypt/live/mydomain.com folder : cert.pem chain.pem fullchain.pem privkey.pem Did I missed something? 回答1: I'm the author of Greenlock, a certbot-compatible Let's Encrypt v2 client, so I've had to learn the ins and outs of all these things as well. Hopefully this helps: KEY privkey.pem

SSL certificate on local Laradock Nginx project

試著忘記壹切 提交于 2020-11-29 09:26:48
问题 I need your help to set my Laradock (with Docker) using Nginx and SSL "fake" certificate on my local machine. I have no idea how to setup it. Could you please help me? Thanks 回答1: To enable SSL with the current version of laradock (as of Nov 2019) with a self signed certificate you must enable it in the nginx settings. Inside the folder nginx/sites remove the comments below line 6 "# For https" : # For https listen 443 ssl default_server; listen [::]:443 ssl default_server ipv6only=on; ssl