I ran this command: sudo certbot --nginx -d vrlab.ddns.net -v
It produced this output:
Plugins selected: Authenticator nginx, Installer nginx
Requesting a certificate for vrlab.ddns.net
Performing the following challenges:
http-01 challenge for vrlab.ddns.net
Waiting for verification...
Challenge failed for domain vrlab.ddns.net
http-01 challenge for vrlab.ddns.net
Certbot failed to authenticate some domains (authenticator: nginx). The Certificate Authority reported these problems:
Domain: vrlab.ddns.net
Type: unauthorized
Detail: 193.159.50.206: Invalid response from http://vrlab.ddns.net/.well-known/acme-challenge/puQGiYcQorDYPn1Uhhtl4TtnxNeWEbi_Brc_Oog1XIg: 404
Hint: The Certificate Authority failed to verify the temporary nginx configuration changes made by Certbot. Ensure the listed domains point to this nginx server and that it is accessible from the internet.
Cleaning up challenges
Some challenges have failed.
Ask for help or search for solutions at https://community.letsencrypt.org. See the logfile /var/log/letsencrypt/letsencrypt.log or re-run Certbot with -v for more details.
My web server is: nginx 1.18.0
The operating system my web server runs on is: Ubuntu 22.04.1 LTS
My hosting provider, if applicable, is: selfhosted
I'm trying to get a certificate to connect to my MongoDB Server with TLS encryption.
My Setup is a little bit complicated. I'm running the nginx server on a virtual machine listening on port 8080. My router is routing traffic from port 80 to port 8080. So it basically looks like that:
client -p80-> router -p8080-> host -p8080-> vm with nginx.
Oh, right. I think the problem is because you need to use listen 8080
I don't think that works with --nginx plug-in. You might try adding a listen 80; in that default file server block. That should allow the plug-in to use that server block as authenticator. It will also use it as a model to setup an https server block (port 443). This listen won't actually do anything since you are handling port 80 in your router. It is just to "fake out" the plug-in
OR, switch to using --webroot authentication. That will get a cert but won't update your nginx config so you'll have to setup an https server block manually. The Mozilla configurator is a good tool for that.
Normally you can combine -a webroot with -i nginx but in this case I don't think what would have worked. The nginx plug-in uses the http server block as a model to install the https server block. But, it didn't find one to update for authentication so wouldn't have one as a model either.
The log file normally shows the server block(s) the nginx plug-in changed for authentication. In this case none was shown even though one server block was defined and the plug-in backed it up. I concluded it did not identify the listen 8080; server block as an http block.
I'd like to test permutations around this idea but spare time does not allow that today
The webserver plugins often work differently for authentication compared to the installation code. It might work, it might not. I just don't know and would have tried/suggested it instead of assuming it didn't work