Questions tagged [certbot]
328 questions
0
votes
1 answer
Get result of certbot run within docker within ansible
I'm running certbot within a docker container. I'm using ansible to start it via docker_compose.
When the container is started, certbot takes a little while to do its thing, and then the container exits (with results printed to stdout and to a…

lonix
- 896
- 10
- 23
0
votes
1 answer
Force Redirection from http to https nginx to a specific port
I've a service running in 9000 port and setup ssl using letsencrypt. I would like to forward all request from http to https.
http://demo.mydomain.com -> https://demo.mydomain.com
http://www.demo.mydomain.com -> https://demo.mydomain.com…

Vivek
- 93
- 8
0
votes
1 answer
Could not bind to IPv4 or IPv6 with certbot
I'm trying to update an SSL certificate on digital ocean with the command certbot renew But I get this error:
Problem binding to port 80: Could not bind to IPv4 or IPv6.
running netstat -plunt shows that port 80 is been used by…

Harry
- 103
- 2
0
votes
1 answer
LetsEncrypt/CertBot Installed, Chrome Still Not Secure
hopefully this is pretty open and shut, but here's the situation.
I used LetsEncrypt and CertBot to set my website www.blueprintstats.com up with an SSL certificate. Now, I realized after the fact that I had to add blueprintstats.com (no www)…

Hunter
- 101
0
votes
1 answer
apache does not see my new certs, still has expired certs
In typing this question I found this:
Apache seems to be using old expired certificate even though new one is installed
His issue is mine to a T, and all things he tried more or less I did too. The difference was his was solved because he had nginx…

Codejoy
- 107
- 5
- 17
0
votes
0 answers
nginx allow only Let's Encrypt on Ports 80+443
I want to set up an nginx reverse proxy behind a NAT. It will proxy multiple internal servers to the outside world. ALL services will run on a non-standard port (i.e. not on 80 or 443). nginx will also do the HTTPS encryption for the internal…

masgo
- 433
- 1
- 4
- 12
0
votes
1 answer
Cannot acess SSL version of mysite [Apache2][SSL][Certbot]
So i just installed let's encrypt ssl certificate via certbot with command
sudo certbot --apache -d mysite.org -d mysite.org
However after succesfull intallation the site simply cant be accessed, i've used a few recommendation from the internet…

Mabro Chickenz
- 1
- 3
0
votes
1 answer
Limiting NGINX reverse proxying to https only
I have an NGINX reverse proxy configured to forward to different ports on the same machine based on the request URL. I have service1 on port 8070 and service2 on port 8071.
This is my nginx config
upstream service1 {
server…

Hilikus
- 125
- 7
0
votes
1 answer
SSL_ERROR_RX_RECORD_TOO_LONG after VM migration
I have a strange issue whereby I am using certbot on a VM which is working fine, no issues.
I tried to migrate the VM onto another (physical) host as part of a server migration piece of work and when I restarted the VM on the new host, I was getting…

omega1
- 416
- 3
- 9
- 29
0
votes
0 answers
Change Certbot plugin
I have a web server running multiple sites on nginx. They are secured by certificates from Lets Encrypt. For some reason, long ago, I installed the certs for one site using standalone rather than the nginx plugin.
So when certbot renew runs, it…

samh
- 213
- 4
- 11
0
votes
1 answer
SSL Certbot in a domain with 301 redirect and nginx
I have one server at home working with a dynamic domain (mydomain.ddns.net) through my OpenWRT router. Now I want to host a web and I have bought a domain (www.mynewdomain.com) in GoDaddy and I have set up a 301 Redirect with masking (so people keep…

Sergiodiaz53
- 103
- 4
0
votes
1 answer
Https not working
I have a site running on Apache. My site is working properly for http requests, but not for https.
This site is behind ProjectShield and I followed this tutorial in order to activate my own SSL certificate…

Beto Aveiga
- 159
- 1
- 9
0
votes
1 answer
unexpected end of file
I am trying to get revese proxy working. I followed below
https://github.com/nthnnl/odoo-nginx-reverse-proxy
I am getting ginx: [emerg] unexpected end of file, expecting ";" or "}" in /etc/nginx/sites-enabled/mysite.com.conf:52
Here is the…

user2379186
- 101
- 1
- 1
0
votes
0 answers
Connection Closed after switching IPs with new SSL Certificate
I recently installed a couple SSL certificates on a few domains, and generally they work, but whenever I switch IP addresses I get an ERR_CONNECTION_CLOSED error. If I refresh a few times, it will switch to SSL_VERSION_INTERFERENCE for one refresh,…

Paul
- 1
- 2
0
votes
1 answer
Nginx load balancer and forcing HTTPS
I have an Nginx server being used as a load balancer. I have just installed an SSL certificate with Let's Encrypt and I am now looking into forcing HTTPs. The following is my config:
upstream backend {
server one.example.com;
server…

joao
- 103
- 1