certbot

How to setup Letsencrypt for Google Cloud Compute Engine load balancer?

不问归期 提交于 2020-07-17 01:20:13
问题 I've setup my Google Cloud Project to use a load balancer in combination with auto scaling instance templates. Currently the instance group only has one instance. My domain name successfully refers to the load balancers IP. Till these steps everything is working correctly. Now I want to setup SSL for this project. I would like to do this with the Letsencrypt service, however I'm having no success when trying to set this up. In the Google Cloud Engine load balancer window there is an option to

Certbot lets-encrypt certificate not found after installation

非 Y 不嫁゛ 提交于 2020-01-24 21:32:45
问题 Certbot installed two lets-encrypt SSL certificates but none working On my AWS EC2 Ubuntu 18 Three files are as follows: /etc/apache2/sites-available/000-default.conf <VirtualHost *:80> ServerAdmin webmaster@localhost DocumentRoot /var/www/html ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined RewriteEngine on RewriteCond %{SERVER_NAME} =sub1.domain.net [OR] RewriteCond %{SERVER_NAME} =sub2.domain.net RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END

Certbot automatic renewal vulnerabilities

倖福魔咒の 提交于 2019-12-24 10:08:12
问题 I have certbot including automatic renewal in use in several installations with clients. Now I have been reading here: https://community.letsencrypt.org/t/2018-01-11-update-regarding-acme-tls-sni-and-shared-hosting-infrastructure/50188 here https://community.letsencrypt.org/t/solution-client-with-the-currently-selected-authenticator-does-not-support-any-combination-of-challenges-that-will-satisfy-the-ca/49983 and here https://github.com/certbot/certbot/issues/5405 as well here: https:/

Glassfish ssl installation with certbot

我的未来我决定 提交于 2019-12-24 08:34:51
问题 I am new to glassfish and ssl. I am using a ubuntu 14.04 server and downloaded certbot. Since glassfish server is not supported by certbot automation, i installed a certbot-auto standalone and got my new certificate files (cert1.pem chain1.pem fullchain1.pem privkey1.pem). I saw some tutorials online about installing ssl on glassfish but nothing related to certbot .pem certificates. Is there a good tutorial or instructions about installing glassfish ssl with the generated letsencrypt (.pem)

Letsencrypt Certbot error [closed]

跟風遠走 提交于 2019-12-12 03:43:54
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 3 years ago . I'm trying to generate a certificate on a Digital Ocean droplet running Ubuntu 12.04 following this guide: https://certbot.eff.org/#ubuntuother-other I see the following error: ./certbot-auto certonly ... Creating virtual environment... Installing Python packages... ... copying src/cryptography/hazmat/backends

certbot-auto / letsencrypt setting up one key for multiple domains pointing to the same server

谁说胖子不能爱 提交于 2019-12-10 18:48:58
问题 I'm really more of a front-end dev so server config stuff is very new territory for me, sorry if this is an easy question! I'm running into some trouble trying to get my certbot-auto to generate an SSH key for multiple domains, pointing to one box. I have 3-4 domains ( domain1.net , domain2.io , domain3.me , domain4.codes ), which are all pointing to the same Digital Ocean droplet. Previously ( couple months back ), I had attempted this with letsencrypt directly ( no certbot at that time ).

Certbot not creating acme-challenge folder

社会主义新天地 提交于 2019-12-09 04:13:31
问题 I had working Let's encrypt certificates some months ago (with the old letsencrypt client). The server I am using is nginx. Certbot is creating the .well-known folder, but not the acme-challenge folder Now I tried to create new certificates via ~/certbot-auto certonly --webroot -w /var/www/webroot -d domain.com -d www.domain.com -d git.domain.com But I always get errors like this: IMPORTANT NOTES: - The following errors were reported by the server: Domain: git.domain.com Type: unauthorized

Certbot renew: nginx: [error] open() “/run/nginx.pid” failed (2: No such file or directory)

ⅰ亾dé卋堺 提交于 2019-12-08 19:19:02
问题 Certbot and nginx versions: certbot installed using certbot.eff.org install guide. Certbot version: 0.22.2 Nginx version: 1.10.3 Getting ssl certificates works fine: certbot --nginx But, in renewal of cerbot certificated certbot renew --dry-run nginx fails to start causing: nginx: [error] open() "/run/nginx.pid" failed (2: No such file or directory) I have tried changing post-hook and pre-hook in /etc/letsencrypt/renewal/*com.conf/ commenting installer=nginx changing authenticator to nginx

How to update Certbot version?

偶尔善良 提交于 2019-12-08 15:41:41
问题 I am running certbot --apache but I get the following error: Starting new HTTPS connection (1): acme-v01.api.letsencrypt.org Obtaining a new certificate Performing the following challenges: Client with the currently selected authenticator does not support any combination of challenges that will satisfy the CA. Version installed is 0.10.2 on Debian 8.10 I would like to upgrade to 0.21.0 which should fix the issue https://community.letsencrypt.org/t/certbot-0-21-0-release/50725 but I tried apt

Nginx and Certbot won't forward to 443, only port 5001 on aspnet core and kestrel

北城余情 提交于 2019-12-08 14:28:24
问题 I'm trying to deploy an aspnet core 2.2 site with the following setup but when entering url somesite.co.uk it forwards to port 5001 and not 443. Can anyone spot what I'm doing wrong? When entering somesite.co.uk in a browser it redirects to https://somesite.co.uk:5001 C#-Program public class Program { public static void Main(string[] args) { CreateWebHostBuilder(args).Build().Run(); } public static IWebHostBuilder CreateWebHostBuilder(string[] args) => WebHost.CreateDefaultBuilder(args)