My domain is: be-a-part.net (and 40 more)
I ran this command: certbot-auto --apache
It produced this output:
No names were found in your configuration files…
…
Unable to find a virtual host listening on port 80 which is currently needed for Certbot to prove to the CA that you control your domain. Please add a virtual host for port 80.
My Webserver is: Apache/2.2.3
The operating system my web server runs on is (include version):
2.6.32-5-amd64 … x86_64 GNU/Linux, based on Debian (unknown)
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): 0.30.2
More Information:
OpenSSL 1.0.1e
/etc/apache2/apache.conf:
...
# Include the virtual host configurations:
Include /etc/apache2/sites-enabled/[^.#]*
...
Loaded Modules:
core mod_log_config mod_logio prefork http_core mod_so mod_actions mod_alias mod_auth_basic mod_authn_file mod_authz_default mod_authz_groupfile mod_authz_host mod_authz_user mod_autoindex mod_cgi mod_dav mod_dav_fs mod_dir mod_env mod_mime mod_negotiation mod_php5 mod_rewrite mod_setenvif mod_ssl mod_status mod_userdir
/etc/apache2/ports.conf:
Listen 80
<IfModule mod_ssl.c>
Listen 443
</IfModule>
/etc/apache2/sites-enabled/
42 files, one per vhost
first vhost = /etc/apache2/sites-enabled/000-default
NameVirtualHost *:80
<VirtualHost *:80>
ServerAdmin webmaster@be-A-part.de
ServerName www.be-a-part.net
ScriptAlias /global-cgi-bin/ /usr/lib/cgi-bin/
<Directory "/var/lib/cgi-bin">
AllowOverride None
Options ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
DocumentRoot /srv/www/htdocs
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /srv/www/htdocs>
#Indexes rausgenommen ( 2004-12-25 domi )
Options FollowSymLinks MultiViews
AllowOverride AuthConfig
Order allow,deny
allow from all
</Directory>
...
</VirtualHost>
I dont understand why certbot don’t find names in the config files nor does find any virtual hosts
Any help would be welcome,
Mike