Please fill out the fields below so we can help you better. Note: you must provide your domain name to get help. Domain names for issued certificates are all made public in Certificate Transparency logs (e.g. https://crt.sh/?q=example.com), so withholding your domain name here does not increase secrecy, but only makes it harder for us to provide help.
My domain is: fnshopdf.wingysam.xyz
I ran this command: certbot --nginx
It produced this output:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Select the appropriate numbers separated by commas and/or spaces, or leave input
blank to select all options shown (Enter 'c' to cancel): 21
Obtaining a new certificate
Performing the following challenges:
http-01 challenge for fnshop-df.wingysam.xyz
Waiting for verification...
Cleaning up challenges
Deploying Certificate to VirtualHost /etc/nginx/conf.d/fortnite-item-shop-dialogflow.wingysam.xyz.conf
nginx: [emerg] host not found in "None" of the "listen" directive in /etc/nginx/conf.d/fortnite-item-shop-dialogflow.wingysam.xyz.conf:22
Rolling back to previous server configuration...
nginx restart failed:
b''
b''
IMPORTANT NOTES:
- We were unable to install your certificate, however, we
successfully restored your server to its prior configuration.
- Congratulations! Your certificate and chain have been saved at:
/etc/letsencrypt/live/fnshop-df.wingysam.xyz/fullchain.pem
Your key file has been saved at:
/etc/letsencrypt/live/fnshop-df.wingysam.xyz/privkey.pem
Your cert will expire on 2019-09-17. To obtain a new or tweaked
version of this certificate in the future, simply run certbot again
with the "certonly" option. To non-interactively renew *all* of
your certificates, run "certbot renew"
My web server is (include version): Nginx 1.16.0
The operating system my web server runs on is (include version): Ubuntu 16.04
My hosting provider, if applicable, is: Scaleway
I can login to a root shell on my machine (yes or no, or I don’t know): Yes
I’m using a control panel to manage my site (no, or provide the name and version of the control panel): No
The version of my client is (e.g. output of certbot --version
or certbot-auto --version
if you’re using Certbot): certbot 0.34.1
Edit: Oh oops forgot nginx config
server {
listen 80;
server_name fnshopdf.wingysam.xyz;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
proxy_pass http://127.0.0.1:4851;
proxy_redirect off;
# Socket.IO Support
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
}