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. crt.sh | example.com), so withholding your domain name here does not increase secrecy, but only makes it harder for us to provide help.
It produced this output:
Successfully received certificate.
Certificate is saved at: /etc/letsencrypt/live/100-talents.com/fullchain.pem
Key is saved at: /etc/letsencrypt/live/100-talents.com/privkey.pem
This certificate expires on 2022-05-03.
These files will be updated when the certificate renews.
Certbot has set up a scheduled task to automatically renew this certificate in t he background.
Deploying certificate
Successfully deployed certificate for 100-talents.com to /etc/nginx/conf.d/frapp e-bench.conf
Congratulations! You have successfully enabled HTTPS on https://100-talents.com
My web server is (include version): nginx/1.18.0 (Ubuntu)
The operating system my web server runs on is (include version): Ubuntu 20.04.3 LTS
My hosting provider, if applicable, is: Digital Ocean
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 1.22.0
You have a choice to make. Do you want nginx to serve this site and this site only, or do you want to serve something else as well, on a different subdomain for example?
In the first case, you can probably edit nginx.conf directly. (I don't know if certbot can see that but you can always install your certificate manually... ehm, no, It's not something easier than this.)
The second case is easier. Make a /etc/nginx/sites-available/100-talents.com file with this contents:
server {
listen 80;
listen [::]:80;
server_name 100-talents.com www.100-talents.com;
# and the stuff needed to run your website:
# - do you need php?
# - a webroot different fron the default one?
}
Then run
ln -s /etc/nginx/sites-available/100-talents.com /etc/nginx/sites-enabled/ && service nginx reload
This should be enough to let certbot work and stop complaining.