Questions tagged [lets-encrypt]

LET'S ENCRYPT QUESTIONS MUST BE PROGRAMMING RELATED. Let’s Encrypt is a free, automated, and open certificate authority provided by the Internet Security Research Group.

LET'S ENCRYPT QUESTIONS MUST BE PROGRAMMING RELATED. Let's Encrypt is a certificate authority that provides free X.509 certificates for Transport Layer Security encryption (TLS). It uses an automated process designed to eliminate the current complex process of manual creation, validation, signing, installation and renewal of certificates.

2023 questions
0
votes
1 answer

Automate Letsencrypt SSL Certificate installation with PHP shell_exec command via acme.sh snap package

I install lets encrypt certificates through acme.sh snap package https://github.com/acmesh-official/acme.sh I am wondering if there is any way to automate certificate installation via PHP default shell_exec() command. This shell command used to get…
Jagan K
  • 1,057
  • 3
  • 15
  • 38
0
votes
1 answer

setting up teleport - Configure Domain Name and obtain TLS certificates using Let's Encrypt

ok so what I want to do is set up teleport on a remote machine so i can access it over the internet. I am following the tutorial but I am no expert on any of this stuff. i try to copy paste the commands from…
david 11
  • 75
  • 8
0
votes
1 answer

Reset project directory of apache web server virtual host having let's encrypt ssl certificate installed

I have a website www.example.com that is hosted on apache2 web server in /var/www/example.com directory and the virtual host config file is ServerAdmin admin@gmail.com ServerName example.com ServerAlias…
Yeasir Arafat
  • 1,425
  • 1
  • 13
  • 28
0
votes
1 answer

How do i redirect WWW url to non www url in nginx?

I have an issue with my nginx configuration , i want to redirect www.yoursay.transport.nsw.gov.au to https://yoursay.transport.nsw.gov.au Here is my configuration server { listen 443 ssl; ssl_certificate…
sambit
  • 339
  • 4
  • 12
0
votes
1 answer

Router delivering its own SSL certificates instead of my domain's to LAN hosts

I installed a nextcloud service on my NAS in a docker container and the service is reachable from the internet via a FQDN for which I generated wildcard Letsencrypt certificates. A reverse proxy (Traefik) is dispatching requests to the service and…
Sergio
  • 25
  • 3
0
votes
0 answers

Redirect www to root (Django WSGI LetsEncrypt) is failing - Not Found

I’m having trouble understanding what’s missing where I’ve added a LetsEncrypt certificate to a Django web application hosted on Linode (CentOS 7) and using Apache. I used the certbot command to obtain an SSL certificate and noted the changes it…
jayuu
  • 443
  • 1
  • 4
  • 17
0
votes
2 answers

Certificate request seems stuck after storing new private key

I've been trying to roll out our an environment on Kubernetes using LetsEncrypt with CertManager to provision certificates. However, it seems that the certificate, for whatever reason, can't be provided. I've been going through the steps over…
m-ve
  • 9
  • 4
0
votes
0 answers

updated certificate not used in browsers

I generate my own certificate with letsencrypt and recently I added a new subdomain to this certificate. I can check on https://crt.sh that the new certificates contains this subdomain but my brosers (I tried Firefox, Chrome and Edge Chromium) still…
Olivier
  • 252
  • 2
  • 11
0
votes
1 answer

DNS challenge from traefik to Vultr

Is there anybody here who has managed to obtain a SSL certificate from Vultr from within a docker/traefik container. I have set up my Vultr api key and provided this to my compose file but the DNS challenge simply fails with an “error presenting…
Alan Rutter
  • 321
  • 4
  • 16
0
votes
2 answers

Lestencrypt: Invalid certificate chain because of port

I have app (backend part) running e.g. on: https://bla.com:8443. I created a certificate for it via letsencrypt for domain bla.com. When I tried to receive payments (webhook) from www.stripe.com I end up with TLS error. After some investigation I…
Tomas Marik
  • 4,053
  • 3
  • 31
  • 62
0
votes
1 answer

Docker-compose nginx with letsencrypt -> ln: failed to create symbolic link - Not supported

Setup: Docker on OpenSuse-Server on local Intel-NUC Here is my docker.compose.yml version: '3.5' services: proxy: image: jwilder/nginx-proxy:alpine labels: - "com.github.jrcs.letsencrypt_nginx_proxy_companion.nginx_proxy=true" …
DonLedger
  • 21
  • 6
0
votes
1 answer

How to create TLS certificate for azure vm?

I have 3 VM in azure . I would like to create TLS certificates for those VM . can we do like that ? Is there any documentation which to create a certificates if yes can you please share
Bala Krishna
  • 47
  • 2
  • 8
0
votes
0 answers

How to configure Nginx for a Laravel website to use SSL with Let's Encrypt on Ubuntu Focal server with php8.0?

I'm currently using the default configuration below, provided by Laravel here: server { listen 80; server_name www.example.com; root /srv/www/example/public; add_header X-Frame-Options "SAMEORIGIN"; add_header X-XSS-Protection…
DevonDahon
  • 7,460
  • 6
  • 69
  • 114
0
votes
0 answers

I can't pass these domain challenges with letsencrypt

I have a website running on an ec2 instance. It's running with pm2, and I'm able to connect to it and load it in my browser directly with it's elastic ip address. My domain is routing traffic to it correctly, according to curl. However, the site…
Stephan
  • 155
  • 13
0
votes
1 answer

Problem with Python requests SSLCertVerificationError

I'm trying to figure out, why I'm having a problem that Python code is throwing a SSLCertVerificationError for valid LetsEncrypt certificates on a virtual host with multiple domains and certificates at the same IP If I delete all certificates except…