Hi @linkp
here's the list of context data - I am still investigating how to solve this port forwarding criss-crossed, but no luck so far.
My domain are:
- mobilitx.net (domain)
- 01.mobilitx.net (subdomain)
I ran this command:
sudo certbot --apache
It produced this output:
Domain: mobilitx.net
Type: unauthorized
Detail: 217.182.68.2: Invalid response from http://mobilitx.net/.well-known/acme-challenge/5ov_7puJH8yeukmgHkD4DKzQZ3BgQD-Bs84gghf6o7w: 400
Domain: www.mobilitx.net
Type: unauthorized
Detail: 217.182.68.2: Invalid response from http://www.mobilitx.net/.well-known/acme-challenge/GOED10tkBQgasm_2Cd_bKWq7xWmPfzavAH9Oo_J0fio: 400
Domain: 01.mobilitx.net
Type: unauthorized
Detail: 217.182.68.2: Invalid response from http://01.mobilitx.net/.well-known/acme-challenge/sN6uWrVQRHIznLH4GmLr9SlydJLjzN6b9skbrW9Rmo8: 400
Domain: www.01.mobilitx.net
Type: unauthorized
Detail: 217.182.68.2: Invalid response from http://www.01.mobilitx.net/.well-known/acme-challenge/anhVdRTB1bKj1xC7WE8lObemZJnFtHThCLaE_gzEyN0: 400
My web server is (include version): Apache/2.4.57 (Ubuntu)
The operating system my web server runs on is (include version): Ubuntu 23.10 (GNU/Linux 6.5.0-26-generic x86_64)
My hosting provider, if applicable, is: GoDaddy
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): yes, webmin.
The version of my client is (e.g. output of certbot --version or certbot-auto --version if you're using Certbot): 2.1.0
the mobilitx.net.conf in sites-available looks like this (note that I have all these dns set up correctly on GoDaddy):
`<VirtualHost *:80>
ServerAdmin federico.marcantognini@gmail.com
ServerName mobilitx.net
ServerAlias www.mobilitx.net
DocumentRoot /var/www/00
<Directory /var/www/00>
Options -Indexes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
SSLEngine on
SSLCertificateFile /etc/ssl/certs/apache-selfsigned.crt
SSLCertificateKeyFile /etc/ssl/private/apache-selfsigned.key
</VirtualHost>`