Questions tagged [lets-encrypt]

Let's Encrypt is a certificate authority that provides free X.509 certificates for TLS encryption.

Let's Encrypt is a certificate authority that entered public beta on December 3, 2015 that provides free X.509 certificates for Transport Layer Security encryption (TLS) via an automated process designed to eliminate the current complex process of manual creation, validation, signing, installation and renewal of certificates for secure websites.

An Python certificate management program called letsencrypt gets installed on the client side (the web server of an enrollee). This is used to order the certificate, to conduct the domain validation process, to install the certificate, to configure the HTTPS encryption in the HTTP server, and later to regularly renew the certificate.

After installation and agreeing to the user license, executing a single command is enough to get a valid certificate installed. Additional options like OCSP stapling or HTTP Strict Transport Security (HSTS) can also be enabled. Automatic setup initially only works with Apache and nginx.

Source: Wikiepdia

822 questions
-1
votes
1 answer

NGINX Not Following Location

server { listen 80; server_name *.bitmitigate.com bitmitigate.com; location /.well-known/acme-challenge { proxy_pass proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header…
Nick
  • 1
  • 1
-1
votes
1 answer

Letsencrypt + Cloudflare setup

I work on many side projects and try to set up https for each one. Since I can't afford to pay for certs, I use Letsencrypt. I also use Cloudflare in case I get traffic spikes. I start with getting an SSL cert with Letsencrypt, then put Cloudflare…
byl83
  • 99
  • 1
  • 3
-1
votes
1 answer

SSL certificates are automatically redirecting subdomains to the top level

I need a certificate for each one of my subdomains on my server. I have two subdomains and a top level (I don't need one for the top level). The subdomains I need an SSL certificate are pma (remote administration) beta (private beta access to the…
-1
votes
1 answer

Apache VirtualHost Hell - fails to redirect sometimes, throws odd SSL error other times: What am I doing wrong?

I'm trying to configure my website to redirect all traffic to the www subdomain, and redirect all http requests to https requests. I know it's not a problem with by DNS records (which include an A record for www and cloud) because my configuration…
user395687
-1
votes
2 answers

Certbot-auto can't renew because letsencrypt domain is 'duplicated'?

I have an Ubuntu 14.04 Trust server, with a Django app served with Apache 2.4. I have set up Let's Encrypt with a SSL Cert. The cert is installed, but will expire in 17 days. /root/certbot-auto renew --apache gives the following error, and the cert…
Amandasaurus
  • 31,471
  • 65
  • 192
  • 253
-1
votes
1 answer

Who's right about when to renew Let's Encrypt certificates?

I received the following, sans unsubscribe link: Hello, Your certificate (or certificates) for the names listed below will expire in 1 days (on 14 Aug 16 23:07 +0000). Please make sure to renew your certificate before then, or visitors to your…
-1
votes
2 answers

Nginx unexpected end of file

I have nginx set up in a docker container (https://hub.docker.com/r/aptalca/nginx-letsencrypt/). Some changes were made (adding the last location block) and now nginx fails to start. Using the nginx config checker (nginx -t) it tells me that theres…
Simon
  • 105
  • 2
  • 6
-1
votes
1 answer

Letsencrypt ISPConfig 3 security error in Firefox

I have setup SSL certificates with letsencrypt and ISPConfig 3 (on a cheap hosting service). Installed letsencrypt on a Ubuntu desktop: git clone https://github.com/letsencrypt/letsencrypt cd letsencrypt ./letsencrypt-auto Created the…
Janghou
  • 475
  • 1
  • 4
  • 7
-1
votes
0 answers

postfix on local webserver to forward notification mails to customer emails adresses

I have running a web application on a hosted web server. The web application needs to send out emails to different client email adresses. The flow would be : Local WebApplication -> Local Postfix SMTP Server(Port 25) -> Forward Email to Any Remote…
-1
votes
2 answers

underscore in certbot's TXT record

Certbot is a free and open-source utility mainly used for managing SSL/TLS certificates from the Let’s Encrypt certificate authority. When using Certbot to obtain a certificate through the DNS-01 challenge, Certbot will provide you with instructions…
-1
votes
1 answer

SSL cert fails when subdomain is an A Record of another host

Please excuse any wrong terminology here. If it feels I'm using the wrong term, I possibly am. Previous scenario: I have a domain and subdomains DOMAINA, * .DOMAINA on my domain provider, pointing to a linode name server ns*.linode.com I hosted…
-1
votes
1 answer

Certbot standalone fails with error: Some challenges have failed

The website runs on Web-hosting server beget.com I am using Ubuntu 20 If that information is useful. I am trying to get SSL-certificate with certbot by standalone on my domain dmitrysemenyuk.com As I understand I get error 404, but I do not…
rockzxm
  • 101
  • 1
  • 1
  • 2
-1
votes
1 answer

Warning on redirecting https://www.example.net to https://example.com

Using Nginx and Let's Encrypt, I have a domain example.com which is secured by Let's Encrypt. I have another domain name example.net which is redirected as bellow : server { listen 80; listen 443; server_name example.net *.example.net; …
ehsan_kabiri_33
  • 145
  • 2
  • 8
-1
votes
1 answer

NGINX SSL Certificate based on URI

I have multiple domain names, currently all of them are on a single SSL certificate through Lets Encrypt. However I would like to break them off and get individual certificates for each domain. The problem I'm running into, and what I'm hoping to…
-1
votes
1 answer

Can I create Let’s Encrypt certificate for my domain from macOS?

I have a domain parking that returns a security error for HTTPS and is not possible to create a Let’s Encrypt certificate on the server, but it is possible to upload a certificate. Would it be possible to create a Let’s Encrypt certificate from my…
al404IT
  • 123
  • 1
  • 7
1 2 3
54
55