Questions tagged [certbot]
328 questions
0
votes
1 answer
Connection is not secure, only on mobile Certbot / LetsEncrypt
I have linked a service on my server through this reverse proxy
var httpProxy = require('http-proxy');
var fs = require('fs');
httpProxy.createServer({
target: {
host:…

N00b
- 1
- 1
0
votes
0 answers
Linux user access to file that is a soft link
I'm using Certbot to implement LetsEncrypt generated certificates on a Debian 11 server. Certbot was run/setup while logged in as root. This solution creates two files, fullchain.pem & privkey.pem, which the webserver needs to access.
ls -la of live…

MindSpiker
- 155
- 4
0
votes
1 answer
ErrorDocument not working for any error. Ubuntu Apache
I'm having an issue with getting the ErrorDocument to work. I have tried most of the suggestions on most of the forms and posts. The only thing I know that I have that the others did not is the RewriteCond that was added by certbot.
I have done it…

La Phyzz
- 1
- 1
0
votes
1 answer
Why I see all Vhost domain names in SSL certificate, what did I do wrong?
I have a VPS that hosts 2 websites, and I have 2 domains, domain1.com and domain2.com
Server Nginx running on Ubuntu 20.04
I installed certbot and nginx according to their instructions and CA is Letsencrypt.
The problem is that when I visit…

user174174
- 103
- 1
0
votes
1 answer
Migrating API to new server - Should I generate a new SSL certificate and what are the implications for clients?
I am migrating my API to a new server and both old and new server are running on Ubuntu 20.04 and Nginx. My SSL certificate was generated by certbot. Should I generate a new certificate on the new server or copy the certificate from the old server?…

Sujith S Manjavana
- 103
- 3
0
votes
1 answer
Provisioning AMI with certbot certificates that allow the AMI to be reused at a different address
I would like to be able to replicate a site built in an existing, working EC2 Linux 2 AMI image in a manner that does not require re-provisioning of https certificates when spinning up a saved AMI on a different address. The web server is stock…
0
votes
2 answers
Certbot challenge using 443 instead of 80?
Is it possible to do the challenge using another port? I read here that you can't replace port 80, but using an "alternative let's encrypt client" you can? (not clear at all)
I have one server in this network where the administrator is unable, or…

Guilherme Richter
- 23
- 4
0
votes
0 answers
Letsencrypt - Existing domain certificate gets invalid when adding new domain
When I try to add ssl certificate for a -domain.com on the nginx server, It gets installed and works but the other existing old-domain.com show a certificate error
This server could not prove that it is old-domain.com; its security certificate is…

TheMonkeyKing
- 113
- 1
- 1
- 5
0
votes
2 answers
APACHE CERTBOT ERROR
I'm configuring https on a local apache server using certbot but I get the error below:
Which names would you like to activate HTTPS for?
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
1: www.example.com
- - - - - -…

Sam
- 1
- 1
0
votes
0 answers
How do I deal with "Some challenges have failed" in certbot?
I am trying to request a TLS certificate using Certbot (source: https://certbot.eff.org/instructions) with sudo certbot --nginx. It is supposed to be for a docker registry used as a pull through cache…

naraghi
- 101
- 1
- 3
0
votes
0 answers
Infinite Redirect after Certbot https configuration
Hey so I wanted to add https
I started with a simple nginx config of
worker_processes 1;
events {
worker_connections 1024;
}
http {
server {
listen 80;
server_name www.danielokita.com;
location / {
…
0
votes
1 answer
Which key is used for signed exchange certificate?
I was trying to generate a Signed Exchange Certificate from Google CA followed by this documentation https://cloud.google.com/certificate-manager/docs/public-ca-tutorial
But now facing this error :
"An unexpected error occurred:
Public key does not…
0
votes
2 answers
Install certbot ubuntu 21.10 unmet dependencies
I am trying to install certbot on ubuntu server 21.10 with the following tutorial: https://www.digitalocean.com/community/tutorials/how-to-secure-apache-with-let-s-encrypt-on-ubuntu-20-04.
But when I run the following command:
sudo apt install…

Davidoffo
- 3
- 1
0
votes
1 answer
Let's encrypt certificates fail to verify, throw errors in a Node.js web app
I've recently started getting issues with my Let's Encrypt certificates.
On the web browser I don't get any issues for the certificate, but when I run an Java web app thru NGINX using the certificate and I try to connect using axios npm package from…

Munchkin
- 133
- 1
- 1
- 11
0
votes
0 answers
Does "deploy-hook" auto-reload nginx after SSL cert first time applied?
I'm looking a way to reload Nginx on both Certbot cert both first time applied and renewed.
To auto-reload Nginx after cert renewed, I need to put "deploy-hook" to /etc/letsencrypt/cli.ini:
deploy-hook = systemctl reload nginx
How about on first…

apasajja
- 167
- 3
- 10