nginx-certbot icon indicating copy to clipboard operation
nginx-certbot copied to clipboard

Boilerplate configuration for nginx and certbot with docker-compose

Results 54 nginx-certbot issues
Sort by recently updated
recently updated
newest added

Running the 2.x script ends with 2 files for certbot that have the following source showing that the curl request failed with a file not found. ``` curl -s https://raw.githubusercontent.com/certbot/certbot/master/certbot-nginx/certbot_nginx/tls_configs/options-ssl-nginx.conf...

Hi, I would like to create SSL certificate for both a domain and a subdomain but it failed : > Performing the following challenges: > http-01 challenge for api.charles.cool >...

The script copies in recommended TLS settings for nginx, as well as an existing DH group from certbot on github: ``` curl -s https://raw.githubusercontent.com/certbot/certbot/master/certbot-nginx/certbot_nginx/_internal/tls_configs/options-ssl-nginx.conf > "$data_path/conf/options-ssl-nginx.conf" curl -s https://raw.githubusercontent.com/certbot/certbot/master/certbot/certbot/ssl-dhparams.pem >...

Hi, the howto says # https://medium.com/@pentacent/nginx-and-lets-encrypt-with-docker-in-less-than-5-minutes-b4b8a60d3a71 use this: include /etc/letsencrypt/options-ssl-nginx.conf; ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; But the script puts the files in /etc/letsencrypt/conf/options-ssl-nginx.conf; At least thats what happened in my case.

It won't pass the time to generate new certifications. Doing from my computer, everything works but, since it's not the server, it fails to check the acme-challenge, but that's ok....

I follow the instruction. I changed domains and mail in init-letsencrypt.sh and app.conf. When I run ./init-letsencrypt.sh, I get error: ``` ### Creating dummy certificate for kosyachniy.com ... Generating a...

I recently found out about the certbot standalone mode and was thinking if the nginx setup is a bit over engineered?

nginx_1 | 2019/10/13 01:17:59 [emerg] 1#1: open() "/etc/letsencrypt/options-ssl-nginx.conf" failed (2: No such file or directory) in /etc/nginx/conf.d/app.conf:22 nginx_1 | nginx: [emerg] open() "/etc/letsencrypt/options-ssl-nginx.conf" failed (2: No such file or directory)...

reason: https://community.letsencrypt.org/t/500-interval-server-error-in-options-ssl-nginx-conf-rate-limit/118286?u=9peppe explanation: 22. HTTP page not retrieved. The requested url was not found or returned another error with the HTTP error code being 400 or above. This return code...

```diff diff --git a/init-letsencrypt.sh b/init-letsencrypt.sh index f282b37..154c48e 100755 --- a/init-letsencrypt.sh +++ b/init-letsencrypt.sh @@ -1,5 +1,5 @@ #!/bin/bash -set -e +set -ex domains=(example.com www.example.com) # Specify domains here or use the...