Debian 11 and symlinks

My domain is: portugalenfrancais.com

I changed my webserver (old hardware), and I transfered all of my websites

I simply transfered all of the files and databaes. From an external point of view, only IP has changed.

I'm running on Debian 11.

The "old" certificates where running good, but of course, without Certbot beeing installed, I can not renewal them. So I install certbot on my new webserver.

Everything is fine, the new certificates are issued, and I update my symlinks on vhosts files.

It don't work. It's like if apache wasn't following them, altough no error are issued no where that I know of.

Someone can help ?
Here's my config file :

<IfModule mod_ssl.c>
<VirtualHost *:443>
Protocols h2 h2c http/1.1
DocumentRoot /var/www/portugalenfrancais.com
ServerAlias portugalenfrancais.com *.portugalenfrancais.com francoportugais.com *.francoportugais.com lusitanie.fr *.lusitanie.fr
ServerName portugalenfrancais
ServerAdmin joriavlis@gmail.com

RewriteEngine On
RewriteCond %{HTTP_HOST} !^portugalenfrancais\.com$
RewriteRule (.*) https://portugalenfrancais.com$1 [L,R=301]

<Directory /var/www/portugalenfrancais.com>
Options -Indexes +FollowSymLinks +MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>

Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateFile /etc/letsencrypt/live/portugalenfrancais.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/portugalenfrancais.com/privkey.pem



</VirtualHost>

<VirtualHost *:80>

DocumentRoot /var/www/portugalenfrancais.com
ServerAlias portugalenfrancais.com *.portugalenfrancais.com francoportugais.com *.francoportugais.com lusitanie.fr *.lusitanie.fr
ServerName portugalenfrancais
ServerAdmin joriavlis@gmail.com

RewriteEngine On

RewriteCond %{SERVER_PORT} ^80$
RewriteRule ^(.*)$ https://portugalenfrancais.com%{REQUEST_URI} [R=301,L]
RewriteCond %{SERVER_NAME} =portugalenfrancais.com [OR]
RewriteCond %{SERVER_NAME} =*.portugalenfrancais.com
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>
</IfModule>


Thank you !

1 Like

Hi @joriavlis, and welcome to the LE community forum :slight_smile:

Your config seems to be missing "SSLEngine ON":

curl -Ii http://portugalenfrancais.com:443/
HTTP/1.1 301 Moved Permanently
Date: Mon, 28 Mar 2022 14:55:18 GMT
Server: Apache/2.4.53 (Debian)
Location: https://portugalenfrancais.com/
Content-Type: text/html; charset=iso-8859-1

Does this file exist?:
Include /etc/letsencrypt/options-ssl-apache.conf

1 Like

I found that on the logs:

portugalenfrancais:443:0 server certificate does NOT include an ID which matches the server name

(but I already also tried with a new certificate issued on this new webserver, it won't work either)

if I do https://portugalenfrancais.com , I just don't have a certificate...

Please show:
ls -l /etc/letsencrypt/live/portugalenfrancais.com/
cat /etc/letsencrypt/options-ssl-apache.conf | grep ngine

1 Like

yes it exists

Also run

certbot certificates

-rw-r--r-- 1 root root 692 Aug 30 2019 README
-rw-r--r-- 1 root root 1862 Feb 24 19:59 cert.pem
-rw-r--r-- 1 root root 3750 Feb 24 19:59 chain.pem
-rw-r--r-- 1 root root 5612 Feb 24 19:59 fullchain.pem
-rw-r--r-- 1 root root 1704 Feb 24 19:59 privkey.pem
SSLEngine on

That might fail.
But shouldn't be required at this point.

1 Like

This is what I see:

curl -Ii https://portugalenfrancais.com/
curl: (35) error:1408F10B:SSL routines:ssl3_get_record:wrong version number

curl -Ii http://portugalenfrancais.com:443/
HTTP/1.1 301 Moved Permanently
Date: Mon, 28 Mar 2022 14:55:18 GMT
Server: Apache/2.4.53 (Debian)
Location: https://portugalenfrancais.com/
Content-Type: text/html; charset=iso-8859-1

No SSL.
But the cert files are there.

1 Like

I bet that we find:
80 > 80
443 > 80

Is there any NAT going on?

1 Like

I was thinking there might be more than one certificate for those names.

But yeah, apache is probably serving another virtualhost.

I think it might be time for sudo apachectl -t -D DUMP_VHOSTS

1 Like

Agreed!
Apache is notorious for running at all cost.
If there are any default files in the enabled path, they may be causing this trouble too.

1 Like

no NAT that I'm aware of.

I'm not a big pro of all of this, but it's a fresh new webserver, I just did the basics.

No SSL, but SSL Engine is On. What's going on @_@

Show:
ls -l /etc/apache2/sites-enabled/
apachectl -t -D DUMP_VHOSTS

1 Like

I have a lot of websites, all of them with the same issue, so the following is big:


total 0
lrwxrwxrwx 1 root root 35 Mar  1 12:30 000-default.conf -> ../sites-available/000-default.conf
lrwxrwxrwx 1 root root 37 Mar 28 10:47 13juillet.com.conf -> ../sites-available/13juillet.com.conf
lrwxrwxrwx 1 root root 41 Mar 27 22:07 auberydasilva.com.conf -> ../sites-available/auberydasilva.com.conf
lrwxrwxrwx 1 root root 36 Mar 27 22:21 benevale.com.conf -> ../sites-available/benevale.com.conf
lrwxrwxrwx 1 root root 46 Mar 28 09:53 caminhosdeportugal.com.conf -> ../sites-available/caminhosdeportugal.com.conf
lrwxrwxrwx 1 root root 39 Mar 27 14:24 cheveublanc.com.conf -> ../sites-available/cheveublanc.com.conf
lrwxrwxrwx 1 root root 35 Mar 27 22:29 da-silva.fr.conf -> ../sites-available/da-silva.fr.conf
lrwxrwxrwx 1 root root 34 Mar 27 22:44 dasilva.pt.conf -> ../sites-available/dasilva.pt.conf
lrwxrwxrwx 1 root root 34 Mar 27 22:34 e-jori.com.conf -> ../sites-available/e-jori.com.conf
lrwxrwxrwx 1 root root 34 Mar 27 22:46 e-kaki.net.conf -> ../sites-available/e-kaki.net.conf
lrwxrwxrwx 1 root root 35 Mar 28 09:58 ekonomia.pt.conf -> ../sites-available/ekonomia.pt.conf
lrwxrwxrwx 1 root root 41 Mar 28 09:49 emcadeamentos.com.conf -> ../sites-available/emcadeamentos.com.conf
lrwxrwxrwx 1 root root 34 Mar 27 22:49 helenos.pt.conf -> ../sites-available/helenos.pt.conf
lrwxrwxrwx 1 root root 35 Mar 27 22:54 inaciem.com.conf -> ../sites-available/inaciem.com.conf
lrwxrwxrwx 1 root root 42 Mar 27 22:58 monsieurqueijo.com.conf -> ../sites-available/monsieurqueijo.com.conf
lrwxrwxrwx 1 root root 34 Mar 28 10:12 parisii.fr.conf -> ../sites-available/parisii.fr.conf
lrwxrwxrwx 1 root root 38 Mar 27 23:02 philo-cafe.net.conf -> ../sites-available/philo-cafe.net.conf
lrwxrwxrwx 1 root root 46 Mar 28 10:56 portugalenfrancais.com.conf -> ../sites-available/portugalenfrancais.com.conf
lrwxrwxrwx 1 root root 40 Mar 27 23:08 static-media.com.conf -> ../sites-available/static-media.com.conf
lrwxrwxrwx 1 root root 35 Mar 28 10:31 tartines.fr.conf -> ../sites-available/tartines.fr.conf
lrwxrwxrwx 1 root root 41 Mar 28 09:07 transhumanismo.pt.conf -> ../sites-available/transhumanismo.pt.conf
lrwxrwxrwx 1 root root 50 Mar 28 09:12 transvision-conference.org.conf -> ../sites-available/transvision-conference.org.conf
lrwxrwxrwx 1 root root 34 Mar 28 10:45 vicedi.com.conf -> ../sites-available/vicedi.com.conf
VirtualHost configuration:
*:443                  is a NameVirtualHost
         default server 13juillet.com (/etc/apache2/sites-enabled/13juillet.com.conf:2)
         port 443 namevhost 13juillet.com (/etc/apache2/sites-enabled/13juillet.com.conf:2)
                 wild alias *.13juillet.com
         port 443 namevhost auberydasilva.com (/etc/apache2/sites-enabled/auberydasilva.com.conf:2)
                 wild alias *.auberydasilva.com
         port 443 namevhost benevale.com (/etc/apache2/sites-enabled/benevale.com.conf:2)
                 wild alias *.benevale.com
         port 443 namevhost caminhosdeportugal.com (/etc/apache2/sites-enabled/caminhosdeportugal.com.conf:2)
                 wild alias *.caminhosdeportugal.com
         port 443 namevhost cheveublanc.com (/etc/apache2/sites-enabled/cheveublanc.com.conf:2)
                 wild alias *.cheveublanc.com
         port 443 namevhost da-silva.fr (/etc/apache2/sites-enabled/da-silva.fr.conf:2)
                 wild alias *.da-silva.fr
         port 443 namevhost dasilva.pt (/etc/apache2/sites-enabled/dasilva.pt.conf:2)
                 wild alias *.dasilva.pt
         port 443 namevhost e-jori.com (/etc/apache2/sites-enabled/e-jori.com.conf:2)
                 alias joriavlis.com
                 wild alias *.e-jori.com
         port 443 namevhost e-kaki.net (/etc/apache2/sites-enabled/e-kaki.net.conf:2)
                 wild alias *.e-kaki.net
         port 443 namevhost ekonomia.pt (/etc/apache2/sites-enabled/ekonomia.pt.conf:2)
                 wild alias *.ekonomia.pt
         port 443 namevhost emcadeamentos.com (/etc/apache2/sites-enabled/emcadeamentos.com.conf:2)
                 wild alias *.emcadeamentos.com
         port 443 namevhost helenos.pt (/etc/apache2/sites-enabled/helenos.pt.conf:2)
                 wild alias *.helenos.pt
         port 443 namevhost inaciem.com (/etc/apache2/sites-enabled/inaciem.com.conf:2)
                 wild alias *.inaciem.com
         port 443 namevhost monsieurqueijo.com (/etc/apache2/sites-enabled/monsieurqueijo.com.conf:2)
                 wild alias *.monsieurqueijo.com
         port 443 namevhost parisii.fr (/etc/apache2/sites-enabled/parisii.fr.conf:2)
                 wild alias *.parisii.fr
         port 443 namevhost philo-cafe.net (/etc/apache2/sites-enabled/philo-cafe.net.conf:2)
                 wild alias *.philo-cafe.net
         port 443 namevhost portugalenfrancais (/etc/apache2/sites-enabled/portugalenfrancais.com.conf:2)
                 alias portugalenfrancais.com
                 alias francoportugais.com
                 alias lusitanie.fr
                 wild alias *.portugalenfrancais.com
                 wild alias *.francoportugais.com
                 wild alias *.lusitanie.fr
         port 443 namevhost static-media.com (/etc/apache2/sites-enabled/static-media.com.conf:2)
                 wild alias *.static-media.com
         port 443 namevhost tartines.fr (/etc/apache2/sites-enabled/tartines.fr.conf:2)
                 wild alias *.tartines.fr
         port 443 namevhost transhumanismo.pt (/etc/apache2/sites-enabled/transhumanismo.pt.conf:2)
                 wild alias *.transhumanismo.pt
         port 443 namevhost transvision-conference.org (/etc/apache2/sites-enabled/transvision-conference.org.conf:2)
                 wild alias *.transvision-conference.org
         port 443 namevhost vicedi.com (/etc/apache2/sites-enabled/vicedi.com.conf:2)
                 wild alias *.vicedi.com
*:80                   is a NameVirtualHost
         default server ns3075207.ip-217-182-174.eu (/etc/apache2/sites-enabled/000-default.conf:1)
         port 80 namevhost ns3075207.ip-217-182-174.eu (/etc/apache2/sites-enabled/000-default.conf:1)
         port 80 namevhost 13juillet.com (/etc/apache2/sites-enabled/13juillet.com.conf:23)
                 wild alias *.13juillet.com
         port 80 namevhost auberydasilva.com (/etc/apache2/sites-enabled/auberydasilva.com.conf:22)
                 wild alias *.auberydasilva.com
         port 80 namevhost benevale.com (/etc/apache2/sites-enabled/benevale.com.conf:22)
                 wild alias *.benevale.com
         port 80 namevhost caminhosdeportugal.com (/etc/apache2/sites-enabled/caminhosdeportugal.com.conf:23)
                 wild alias *.caminhosdeportugal.com
         port 80 namevhost cheveublanc.com (/etc/apache2/sites-enabled/cheveublanc.com.conf:23)
                 wild alias *.cheveublanc.com
         port 80 namevhost da-silva.fr (/etc/apache2/sites-enabled/da-silva.fr.conf:22)
                 wild alias *.da-silva.fr
         port 80 namevhost dasilva.pt (/etc/apache2/sites-enabled/dasilva.pt.conf:23)
                 wild alias *.dasilva.pt
         port 80 namevhost e-jori.com (/etc/apache2/sites-enabled/e-jori.com.conf:22)
                 alias joriavlis.com
                 wild alias *.e-jori.com
         port 80 namevhost e-kaki.net (/etc/apache2/sites-enabled/e-kaki.net.conf:22)
                 wild alias *.e-kaki.net
         port 80 namevhost ekonomia.pt (/etc/apache2/sites-enabled/ekonomia.pt.conf:23)
                 wild alias *.ekonomia.pt
         port 80 namevhost emcadeamentos.com (/etc/apache2/sites-enabled/emcadeamentos.com.conf:24)
                 wild alias *.emcadeamentos.com
         port 80 namevhost helenos.pt (/etc/apache2/sites-enabled/helenos.pt.conf:24)
                 wild alias *.helenos.pt
         port 80 namevhost inaciem.com (/etc/apache2/sites-enabled/inaciem.com.conf:22)
                 wild alias *.inaciem.com
         port 80 namevhost monsieurqueijo.com (/etc/apache2/sites-enabled/monsieurqueijo.com.conf:22)
                 wild alias *.monsieurqueijo.com
         port 80 namevhost parisii.fr (/etc/apache2/sites-enabled/parisii.fr.conf:23)
                 wild alias *.parisii.fr
         port 80 namevhost philo-cafe.net (/etc/apache2/sites-enabled/philo-cafe.net.conf:23)
                 wild alias *.philo-cafe.net
         port 80 namevhost portugalenfrancais (/etc/apache2/sites-enabled/portugalenfrancais.com.conf:28)
                 alias portugalenfrancais.com
                 alias francoportugais.com
                 alias lusitanie.fr
                 wild alias *.portugalenfrancais.com
                 wild alias *.francoportugais.com
                 wild alias *.lusitanie.fr
         port 80 namevhost static-media.com (/etc/apache2/sites-enabled/static-media.com.conf:23)
                 wild alias *.static-media.com
         port 80 namevhost tartines.fr (/etc/apache2/sites-enabled/tartines.fr.conf:24)
                 wild alias *.tartines.fr
         port 80 namevhost transhumanismo.pt (/etc/apache2/sites-enabled/transhumanismo.pt.conf:23)
                 wild alias *.transhumanismo.pt
         port 80 namevhost transvision-conference.org (/etc/apache2/sites-enabled/transvision-conference.org.conf:23)
                 wild alias *.transvision-conference.org
         port 80 namevhost vicedi.com (/etc/apache2/sites-enabled/vicedi.com.conf:22)
                 wild alias *.vicedi.com

total 0
lrwxrwxrwx 1 root root 35 Mar 1 12:30 000-default.conf -> ../sites-available/000-default.conf
lrwxrwxrwx 1 root root 37 Mar 28 10:47 13juillet.com.conf -> ../sites-available/13juillet.com.conf
lrwxrwxrwx 1 root root 41 Mar 27 22:07 auberydasilva.com.conf -> ../sites-available/auberydasilva.com.conf
lrwxrwxrwx 1 root root 36 Mar 27 22:21 benevale.com.conf -> ../sites-available/benevale.com.conf
lrwxrwxrwx 1 root root 46 Mar 28 09:53 caminhosdeportugal.com.conf -> ../sites-available/caminhosdeportugal.com.conf
lrwxrwxrwx 1 root root 39 Mar 27 14:24 cheveublanc.com.conf -> ../sites-available/cheveublanc.com.conf
lrwxrwxrwx 1 root root 35 Mar 27 22:29 da-silva.fr.conf -> ../sites-available/da-silva.fr.conf
lrwxrwxrwx 1 root root 34 Mar 27 22:44 dasilva.pt.conf -> ../sites-available/dasilva.pt.conf
lrwxrwxrwx 1 root root 34 Mar 27 22:34 e-jori.com.conf -> ../sites-available/e-jori.com.conf
lrwxrwxrwx 1 root root 34 Mar 27 22:46 e-kaki.net.conf -> ../sites-available/e-kaki.net.conf
lrwxrwxrwx 1 root root 35 Mar 28 09:58 ekonomia.pt.conf -> ../sites-available/ekonomia.pt.conf
lrwxrwxrwx 1 root root 41 Mar 28 09:49 emcadeamentos.com.conf -> ../sites-available/emcadeamentos.com.conf
lrwxrwxrwx 1 root root 34 Mar 27 22:49 helenos.pt.conf -> ../sites-available/helenos.pt.conf
lrwxrwxrwx 1 root root 35 Mar 27 22:54 inaciem.com.conf -> ../sites-available/inaciem.com.conf
lrwxrwxrwx 1 root root 42 Mar 27 22:58 monsieurqueijo.com.conf -> ../sites-available/monsieurqueijo.com.conf
lrwxrwxrwx 1 root root 34 Mar 28 10:12 parisii.fr.conf -> ../sites-available/parisii.fr.conf
lrwxrwxrwx 1 root root 38 Mar 27 23:02 philo-cafe.net.conf -> ../sites-available/philo-cafe.net.conf
lrwxrwxrwx 1 root root 46 Mar 28 10:56 portugalenfrancais.com.conf -> ../sites-available/portugalenfrancais.com.conf
lrwxrwxrwx 1 root root 40 Mar 27 23:08 static-media.com.conf -> ../sites-available/static-media.com.conf
lrwxrwxrwx 1 root root 35 Mar 28 10:31 tartines.fr.conf -> ../sites-available/tartines.fr.conf
lrwxrwxrwx 1 root root 41 Mar 28 09:07 transhumanismo.pt.conf -> ../sites-available/transhumanismo.pt.conf
lrwxrwxrwx 1 root root 50 Mar 28 09:12 transvision-conference.org.conf -> ../sites-available/transvision-conference.org.conf
lrwxrwxrwx 1 root root 34 Mar 28 10:45 vicedi.com.conf -> ../sites-available/vicedi.com.conf
VirtualHost configuration:
*:443 is a NameVirtualHost
default server 13juillet.com (/etc/apache2/sites-enabled/13juillet.com.conf:2)
port 443 namevhost 13juillet.com (/etc/apache2/sites-enabled/13juillet.com.conf:2)
wild alias *.13juillet.com
port 443 namevhost auberydasilva.com (/etc/apache2/sites-enabled/auberydasilva.com.conf:2)
wild alias *.auberydasilva.com
port 443 namevhost benevale.com (/etc/apache2/sites-enabled/benevale.com.conf:2)
wild alias *.benevale.com
port 443 namevhost caminhosdeportugal.com (/etc/apache2/sites-enabled/caminhosdeportugal.com.conf:2)
wild alias *.caminhosdeportugal.com
port 443 namevhost cheveublanc.com (/etc/apache2/sites-enabled/cheveublanc.com.conf:2)
wild alias *.cheveublanc.com
port 443 namevhost da-silva.fr (/etc/apache2/sites-enabled/da-silva.fr.conf:2)
wild alias *.da-silva.fr
port 443 namevhost dasilva.pt (/etc/apache2/sites-enabled/dasilva.pt.conf:2)
wild alias *.dasilva.pt
port 443 namevhost e-jori.com (/etc/apache2/sites-enabled/e-jori.com.conf:2)
alias joriavlis.com
wild alias *.e-jori.com
port 443 namevhost e-kaki.net (/etc/apache2/sites-enabled/e-kaki.net.conf:2)
wild alias *.e-kaki.net
port 443 namevhost ekonomia.pt (/etc/apache2/sites-enabled/ekonomia.pt.conf:2)
wild alias *.ekonomia.pt
port 443 namevhost emcadeamentos.com (/etc/apache2/sites-enabled/emcadeamentos.com.conf:2)
wild alias *.emcadeamentos.com
port 443 namevhost helenos.pt (/etc/apache2/sites-enabled/helenos.pt.conf:2)
wild alias *.helenos.pt
port 443 namevhost inaciem.com (/etc/apache2/sites-enabled/inaciem.com.conf:2)
wild alias *.inaciem.com
port 443 namevhost monsieurqueijo.com (/etc/apache2/sites-enabled/monsieurqueijo.com.conf:2)
wild alias *.monsieurqueijo.com
port 443 namevhost parisii.fr (/etc/apache2/sites-enabled/parisii.fr.conf:2)
wild alias *.parisii.fr
port 443 namevhost philo-cafe.net (/etc/apache2/sites-enabled/philo-cafe.net.conf:2)
wild alias *.philo-cafe.net
port 443 namevhost portugalenfrancais (/etc/apache2/sites-enabled/portugalenfrancais.com.conf:2)
alias portugalenfrancais.com
alias francoportugais.com
alias lusitanie.fr
wild alias *.portugalenfrancais.com
wild alias *.francoportugais.com
wild alias *.lusitanie.fr
port 443 namevhost static-media.com (/etc/apache2/sites-enabled/static-media.com.conf:2)
wild alias *.static-media.com
port 443 namevhost tartines.fr (/etc/apache2/sites-enabled/tartines.fr.conf:2)
wild alias *.tartines.fr
port 443 namevhost transhumanismo.pt (/etc/apache2/sites-enabled/transhumanismo.pt.conf:2)
wild alias *.transhumanismo.pt
port 443 namevhost transvision-conference.org (/etc/apache2/sites-enabled/transvision-conference.org.conf:2)
wild alias *.transvision-conference.org
port 443 namevhost vicedi.com (/etc/apache2/sites-enabled/vicedi.com.conf:2)
wild alias *.vicedi.com
*:80 is a NameVirtualHost
default server ns3075207.ip-217-182-174.eu (/etc/apache2/sites-enabled/000-default.conf:1)
port 80 namevhost ns3075207.ip-217-182-174.eu (/etc/apache2/sites-enabled/000-default.conf:1)
port 80 namevhost 13juillet.com (/etc/apache2/sites-enabled/13juillet.com.conf:23)
wild alias *.13juillet.com
port 80 namevhost auberydasilva.com (/etc/apache2/sites-enabled/auberydasilva.com.conf:22)
wild alias *.auberydasilva.com
port 80 namevhost benevale.com (/etc/apache2/sites-enabled/benevale.com.conf:22)
wild alias *.benevale.com
port 80 namevhost caminhosdeportugal.com (/etc/apache2/sites-enabled/caminhosdeportugal.com.conf:23)
wild alias *.caminhosdeportugal.com
port 80 namevhost cheveublanc.com (/etc/apache2/sites-enabled/cheveublanc.com.conf:23)
wild alias *.cheveublanc.com
port 80 namevhost da-silva.fr (/etc/apache2/sites-enabled/da-silva.fr.conf:22)
wild alias *.da-silva.fr
port 80 namevhost dasilva.pt (/etc/apache2/sites-enabled/dasilva.pt.conf:23)
wild alias *.dasilva.pt
port 80 namevhost e-jori.com (/etc/apache2/sites-enabled/e-jori.com.conf:22)
alias joriavlis.com
wild alias *.e-jori.com
port 80 namevhost e-kaki.net (/etc/apache2/sites-enabled/e-kaki.net.conf:22)
wild alias *.e-kaki.net
port 80 namevhost ekonomia.pt (/etc/apache2/sites-enabled/ekonomia.pt.conf:23)
wild alias *.ekonomia.pt
port 80 namevhost emcadeamentos.com (/etc/apache2/sites-enabled/emcadeamentos.com.conf:24)
wild alias *.emcadeamentos.com
port 80 namevhost helenos.pt (/etc/apache2/sites-enabled/helenos.pt.conf:24)
wild alias *.helenos.pt
port 80 namevhost inaciem.com (/etc/apache2/sites-enabled/inaciem.com.conf:22)
wild alias *.inaciem.com
port 80 namevhost monsieurqueijo.com (/etc/apache2/sites-enabled/monsieurqueijo.com.conf:22)
wild alias *.monsieurqueijo.com
port 80 namevhost parisii.fr (/etc/apache2/sites-enabled/parisii.fr.conf:23)
wild alias *.parisii.fr
port 80 namevhost philo-cafe.net (/etc/apache2/sites-enabled/philo-cafe.net.conf:23)
wild alias *.philo-cafe.net
port 80 namevhost portugalenfrancais (/etc/apache2/sites-enabled/portugalenfrancais.com.conf:28)
alias portugalenfrancais.com
alias francoportugais.com
alias lusitanie.fr
wild alias *.portugalenfrancais.com
wild alias *.francoportugais.com
wild alias *.lusitanie.fr
port 80 namevhost static-media.com (/etc/apache2/sites-enabled/static-media.com.conf:23)
wild alias *.static-media.com
port 80 namevhost tartines.fr (/etc/apache2/sites-enabled/tartines.fr.conf:24)
wild alias *.tartines.fr
port 80 namevhost transhumanismo.pt (/etc/apache2/sites-enabled/transhumanismo.pt.conf:23)
wild alias *.transhumanismo.pt
port 80 namevhost transvision-conference.org (/etc/apache2/sites-enabled/transvision-conference.org.conf:23)
wild alias *.transvision-conference.org
port 80 namevhost vicedi.com (/etc/apache2/sites-enabled/vicedi.com.conf:22)
wild alias *.vicedi.com

here it is


total 0
lrwxrwxrwx 1 root root 35 Mar  1 12:30 000-default.conf -> ../sites-available/000-default.conf
lrwxrwxrwx 1 root root 37 Mar 28 10:47 13juillet.com.conf -> ../sites-available/13juillet.com.conf
lrwxrwxrwx 1 root root 41 Mar 27 22:07 auberydasilva.com.conf -> ../sites-available/auberydasilva.com.conf
lrwxrwxrwx 1 root root 36 Mar 27 22:21 benevale.com.conf -> ../sites-available/benevale.com.conf
lrwxrwxrwx 1 root root 46 Mar 28 09:53 caminhosdeportugal.com.conf -> ../sites-available/caminhosdeportugal.com.conf
lrwxrwxrwx 1 root root 39 Mar 27 14:24 cheveublanc.com.conf -> ../sites-available/cheveublanc.com.conf
lrwxrwxrwx 1 root root 35 Mar 27 22:29 da-silva.fr.conf -> ../sites-available/da-silva.fr.conf
lrwxrwxrwx 1 root root 34 Mar 27 22:44 dasilva.pt.conf -> ../sites-available/dasilva.pt.conf
lrwxrwxrwx 1 root root 34 Mar 27 22:34 e-jori.com.conf -> ../sites-available/e-jori.com.conf
lrwxrwxrwx 1 root root 34 Mar 27 22:46 e-kaki.net.conf -> ../sites-available/e-kaki.net.conf
lrwxrwxrwx 1 root root 35 Mar 28 09:58 ekonomia.pt.conf -> ../sites-available/ekonomia.pt.conf
lrwxrwxrwx 1 root root 41 Mar 28 09:49 emcadeamentos.com.conf -> ../sites-available/emcadeamentos.com.conf
lrwxrwxrwx 1 root root 34 Mar 27 22:49 helenos.pt.conf -> ../sites-available/helenos.pt.conf
lrwxrwxrwx 1 root root 35 Mar 27 22:54 inaciem.com.conf -> ../sites-available/inaciem.com.conf
lrwxrwxrwx 1 root root 42 Mar 27 22:58 monsieurqueijo.com.conf -> ../sites-available/monsieurqueijo.com.conf
lrwxrwxrwx 1 root root 34 Mar 28 10:12 parisii.fr.conf -> ../sites-available/parisii.fr.conf
lrwxrwxrwx 1 root root 38 Mar 27 23:02 philo-cafe.net.conf -> ../sites-available/philo-cafe.net.conf
lrwxrwxrwx 1 root root 46 Mar 28 10:56 portugalenfrancais.com.conf -> ../sites-available/portugalenfrancais.com.conf
lrwxrwxrwx 1 root root 40 Mar 27 23:08 static-media.com.conf -> ../sites-available/static-media.com.conf
lrwxrwxrwx 1 root root 35 Mar 28 10:31 tartines.fr.conf -> ../sites-available/tartines.fr.conf
lrwxrwxrwx 1 root root 41 Mar 28 09:07 transhumanismo.pt.conf -> ../sites-available/transhumanismo.pt.conf
lrwxrwxrwx 1 root root 50 Mar 28 09:12 transvision-conference.org.conf -> ../sites-available/transvision-conference.org.conf
lrwxrwxrwx 1 root root 34 Mar 28 10:45 vicedi.com.conf -> ../sites-available/vicedi.com.conf
VirtualHost configuration:
*:443                  is a NameVirtualHost
         default server 13juillet.com (/etc/apache2/sites-enabled/13juillet.com.conf:2)
         port 443 namevhost 13juillet.com (/etc/apache2/sites-enabled/13juillet.com.conf:2)
                 wild alias *.13juillet.com
         port 443 namevhost auberydasilva.com (/etc/apache2/sites-enabled/auberydasilva.com.conf:2)
                 wild alias *.auberydasilva.com
         port 443 namevhost benevale.com (/etc/apache2/sites-enabled/benevale.com.conf:2)
                 wild alias *.benevale.com
         port 443 namevhost caminhosdeportugal.com (/etc/apache2/sites-enabled/caminhosdeportugal.com.conf:2)
                 wild alias *.caminhosdeportugal.com
         port 443 namevhost cheveublanc.com (/etc/apache2/sites-enabled/cheveublanc.com.conf:2)
                 wild alias *.cheveublanc.com
         port 443 namevhost da-silva.fr (/etc/apache2/sites-enabled/da-silva.fr.conf:2)
                 wild alias *.da-silva.fr
         port 443 namevhost dasilva.pt (/etc/apache2/sites-enabled/dasilva.pt.conf:2)
                 wild alias *.dasilva.pt
         port 443 namevhost e-jori.com (/etc/apache2/sites-enabled/e-jori.com.conf:2)
                 alias joriavlis.com
                 wild alias *.e-jori.com
         port 443 namevhost e-kaki.net (/etc/apache2/sites-enabled/e-kaki.net.conf:2)
                 wild alias *.e-kaki.net
         port 443 namevhost ekonomia.pt (/etc/apache2/sites-enabled/ekonomia.pt.conf:2)
                 wild alias *.ekonomia.pt
         port 443 namevhost emcadeamentos.com (/etc/apache2/sites-enabled/emcadeamentos.com.conf:2)
                 wild alias *.emcadeamentos.com
         port 443 namevhost helenos.pt (/etc/apache2/sites-enabled/helenos.pt.conf:2)
                 wild alias *.helenos.pt
         port 443 namevhost inaciem.com (/etc/apache2/sites-enabled/inaciem.com.conf:2)
                 wild alias *.inaciem.com
         port 443 namevhost monsieurqueijo.com (/etc/apache2/sites-enabled/monsieurqueijo.com.conf:2)
                 wild alias *.monsieurqueijo.com
         port 443 namevhost parisii.fr (/etc/apache2/sites-enabled/parisii.fr.conf:2)
                 wild alias *.parisii.fr
         port 443 namevhost philo-cafe.net (/etc/apache2/sites-enabled/philo-cafe.net.conf:2)
                 wild alias *.philo-cafe.net
         port 443 namevhost portugalenfrancais (/etc/apache2/sites-enabled/portugalenfrancais.com.conf:2)
                 alias portugalenfrancais.com
                 alias francoportugais.com
                 alias lusitanie.fr
                 wild alias *.portugalenfrancais.com
                 wild alias *.francoportugais.com
                 wild alias *.lusitanie.fr
         port 443 namevhost static-media.com (/etc/apache2/sites-enabled/static-media.com.conf:2)
                 wild alias *.static-media.com
         port 443 namevhost tartines.fr (/etc/apache2/sites-enabled/tartines.fr.conf:2)
                 wild alias *.tartines.fr
         port 443 namevhost transhumanismo.pt (/etc/apache2/sites-enabled/transhumanismo.pt.conf:2)
                 wild alias *.transhumanismo.pt
         port 443 namevhost transvision-conference.org (/etc/apache2/sites-enabled/transvision-conference.org.conf:2)
                 wild alias *.transvision-conference.org
         port 443 namevhost vicedi.com (/etc/apache2/sites-enabled/vicedi.com.conf:2)
                 wild alias *.vicedi.com
*:80                   is a NameVirtualHost
         default server ns3075207.ip-217-182-174.eu (/etc/apache2/sites-enabled/000-default.conf:1)
         port 80 namevhost ns3075207.ip-217-182-174.eu (/etc/apache2/sites-enabled/000-default.conf:1)
         port 80 namevhost 13juillet.com (/etc/apache2/sites-enabled/13juillet.com.conf:23)
                 wild alias *.13juillet.com
         port 80 namevhost auberydasilva.com (/etc/apache2/sites-enabled/auberydasilva.com.conf:22)
                 wild alias *.auberydasilva.com
         port 80 namevhost benevale.com (/etc/apache2/sites-enabled/benevale.com.conf:22)
                 wild alias *.benevale.com
         port 80 namevhost caminhosdeportugal.com (/etc/apache2/sites-enabled/caminhosdeportugal.com.conf:23)
                 wild alias *.caminhosdeportugal.com
         port 80 namevhost cheveublanc.com (/etc/apache2/sites-enabled/cheveublanc.com.conf:23)
                 wild alias *.cheveublanc.com
         port 80 namevhost da-silva.fr (/etc/apache2/sites-enabled/da-silva.fr.conf:22)
                 wild alias *.da-silva.fr
         port 80 namevhost dasilva.pt (/etc/apache2/sites-enabled/dasilva.pt.conf:23)
                 wild alias *.dasilva.pt
         port 80 namevhost e-jori.com (/etc/apache2/sites-enabled/e-jori.com.conf:22)
                 alias joriavlis.com
                 wild alias *.e-jori.com
         port 80 namevhost e-kaki.net (/etc/apache2/sites-enabled/e-kaki.net.conf:22)
                 wild alias *.e-kaki.net
         port 80 namevhost ekonomia.pt (/etc/apache2/sites-enabled/ekonomia.pt.conf:23)
                 wild alias *.ekonomia.pt
         port 80 namevhost emcadeamentos.com (/etc/apache2/sites-enabled/emcadeamentos.com.conf:24)
                 wild alias *.emcadeamentos.com
         port 80 namevhost helenos.pt (/etc/apache2/sites-enabled/helenos.pt.conf:24)
                 wild alias *.helenos.pt
         port 80 namevhost inaciem.com (/etc/apache2/sites-enabled/inaciem.com.conf:22)
                 wild alias *.inaciem.com
         port 80 namevhost monsieurqueijo.com (/etc/apache2/sites-enabled/monsieurqueijo.com.conf:22)
                 wild alias *.monsieurqueijo.com
         port 80 namevhost parisii.fr (/etc/apache2/sites-enabled/parisii.fr.conf:23)
                 wild alias *.parisii.fr
         port 80 namevhost philo-cafe.net (/etc/apache2/sites-enabled/philo-cafe.net.conf:23)
                 wild alias *.philo-cafe.net
         port 80 namevhost portugalenfrancais (/etc/apache2/sites-enabled/portugalenfrancais.com.conf:28)
                 alias portugalenfrancais.com
                 alias francoportugais.com
                 alias lusitanie.fr
                 wild alias *.portugalenfrancais.com
                 wild alias *.francoportugais.com
                 wild alias *.lusitanie.fr
         port 80 namevhost static-media.com (/etc/apache2/sites-enabled/static-media.com.conf:23)
                 wild alias *.static-media.com
         port 80 namevhost tartines.fr (/etc/apache2/sites-enabled/tartines.fr.conf:24)
                 wild alias *.tartines.fr
         port 80 namevhost transhumanismo.pt (/etc/apache2/sites-enabled/transhumanismo.pt.conf:23)
                 wild alias *.transhumanismo.pt
         port 80 namevhost transvision-conference.org (/etc/apache2/sites-enabled/transvision-conference.org.conf:23)
                 wild alias *.transvision-conference.org
         port 80 namevhost vicedi.com (/etc/apache2/sites-enabled/vicedi.com.conf:22)
                 wild alias *.vicedi.com

a lot of things...

here it is

total 0
lrwxrwxrwx 1 root root 35 Mar 1 12:30 000-default.conf -> ../sites-available/000-default.conf
lrwxrwxrwx 1 root root 37 Mar 28 10:47 13juillet.com.conf -> ../sites-available/13juillet.com.conf
lrwxrwxrwx 1 root root 41 Mar 27 22:07 auberydasilva.com.conf -> ../sites-available/auberydasilva.com.conf
lrwxrwxrwx 1 root root 36 Mar 27 22:21 benevale.com.conf -> ../sites-available/benevale.com.conf
lrwxrwxrwx 1 root root 46 Mar 28 09:53 caminhosdeportugal.com.conf -> ../sites-available/caminhosdeportugal.com.conf
lrwxrwxrwx 1 root root 39 Mar 27 14:24 cheveublanc.com.conf -> ../sites-available/cheveublanc.com.conf
lrwxrwxrwx 1 root root 35 Mar 27 22:29 da-silva.fr.conf -> ../sites-available/da-silva.fr.conf
lrwxrwxrwx 1 root root 34 Mar 27 22:44 dasilva.pt.conf -> ../sites-available/dasilva.pt.conf
lrwxrwxrwx 1 root root 34 Mar 27 22:34 e-jori.com.conf -> ../sites-available/e-jori.com.conf
lrwxrwxrwx 1 root root 34 Mar 27 22:46 e-kaki.net.conf -> ../sites-available/e-kaki.net.conf
lrwxrwxrwx 1 root root 35 Mar 28 09:58 ekonomia.pt.conf -> ../sites-available/ekonomia.pt.conf
lrwxrwxrwx 1 root root 41 Mar 28 09:49 emcadeamentos.com.conf -> ../sites-available/emcadeamentos.com.conf
lrwxrwxrwx 1 root root 34 Mar 27 22:49 helenos.pt.conf -> ../sites-available/helenos.pt.conf
lrwxrwxrwx 1 root root 35 Mar 27 22:54 inaciem.com.conf -> ../sites-available/inaciem.com.conf
lrwxrwxrwx 1 root root 42 Mar 27 22:58 monsieurqueijo.com.conf -> ../sites-available/monsieurqueijo.com.conf
lrwxrwxrwx 1 root root 34 Mar 28 10:12 parisii.fr.conf -> ../sites-available/parisii.fr.conf
lrwxrwxrwx 1 root root 38 Mar 27 23:02 philo-cafe.net.conf -> ../sites-available/philo-cafe.net.conf
lrwxrwxrwx 1 root root 46 Mar 28 10:56 portugalenfrancais.com.conf -> ../sites-available/portugalenfrancais.com.conf
lrwxrwxrwx 1 root root 40 Mar 27 23:08 static-media.com.conf -> ../sites-available/static-media.com.conf
lrwxrwxrwx 1 root root 35 Mar 28 10:31 tartines.fr.conf -> ../sites-available/tartines.fr.conf
lrwxrwxrwx 1 root root 41 Mar 28 09:07 transhumanismo.pt.conf -> ../sites-available/transhumanismo.pt.conf
lrwxrwxrwx 1 root root 50 Mar 28 09:12 transvision-conference.org.conf -> ../sites-available/transvision-conference.org.conf
lrwxrwxrwx 1 root root 34 Mar 28 10:45 vicedi.com.conf -> ../sites-available/vicedi.com.conf
VirtualHost configuration:
*:443 is a NameVirtualHost
default server 13juillet.com (/etc/apache2/sites-enabled/13juillet.com.conf:2)
port 443 namevhost 13juillet.com (/etc/apache2/sites-enabled/13juillet.com.conf:2)
wild alias *.13juillet.com
port 443 namevhost auberydasilva.com (/etc/apache2/sites-enabled/auberydasilva.com.conf:2)
wild alias *.auberydasilva.com
port 443 namevhost benevale.com (/etc/apache2/sites-enabled/benevale.com.conf:2)
wild alias *.benevale.com
port 443 namevhost caminhosdeportugal.com (/etc/apache2/sites-enabled/caminhosdeportugal.com.conf:2)
wild alias *.caminhosdeportugal.com
port 443 namevhost cheveublanc.com (/etc/apache2/sites-enabled/cheveublanc.com.conf:2)
wild alias *.cheveublanc.com
port 443 namevhost da-silva.fr (/etc/apache2/sites-enabled/da-silva.fr.conf:2)
wild alias *.da-silva.fr
port 443 namevhost dasilva.pt (/etc/apache2/sites-enabled/dasilva.pt.conf:2)
wild alias *.dasilva.pt
port 443 namevhost e-jori.com (/etc/apache2/sites-enabled/e-jori.com.conf:2)
alias joriavlis.com
wild alias *.e-jori.com
port 443 namevhost e-kaki.net (/etc/apache2/sites-enabled/e-kaki.net.conf:2)
wild alias *.e-kaki.net
port 443 namevhost ekonomia.pt (/etc/apache2/sites-enabled/ekonomia.pt.conf:2)
wild alias *.ekonomia.pt
port 443 namevhost emcadeamentos.com (/etc/apache2/sites-enabled/emcadeamentos.com.conf:2)
wild alias *.emcadeamentos.com
port 443 namevhost helenos.pt (/etc/apache2/sites-enabled/helenos.pt.conf:2)
wild alias *.helenos.pt
port 443 namevhost inaciem.com (/etc/apache2/sites-enabled/inaciem.com.conf:2)
wild alias *.inaciem.com
port 443 namevhost monsieurqueijo.com (/etc/apache2/sites-enabled/monsieurqueijo.com.conf:2)
wild alias *.monsieurqueijo.com
port 443 namevhost parisii.fr (/etc/apache2/sites-enabled/parisii.fr.conf:2)
wild alias *.parisii.fr
port 443 namevhost philo-cafe.net (/etc/apache2/sites-enabled/philo-cafe.net.conf:2)
wild alias *.philo-cafe.net
port 443 namevhost portugalenfrancais (/etc/apache2/sites-enabled/portugalenfrancais.com.conf:2)
alias portugalenfrancais.com
alias francoportugais.com
alias lusitanie.fr
wild alias *.portugalenfrancais.com
wild alias *.francoportugais.com
wild alias *.lusitanie.fr
port 443 namevhost static-media.com (/etc/apache2/sites-enabled/static-media.com.conf:2)
wild alias *.static-media.com
port 443 namevhost tartines.fr (/etc/apache2/sites-enabled/tartines.fr.conf:2)
wild alias *.tartines.fr
port 443 namevhost transhumanismo.pt (/etc/apache2/sites-enabled/transhumanismo.pt.conf:2)
wild alias *.transhumanismo.pt
port 443 namevhost transvision-conference.org (/etc/apache2/sites-enabled/transvision-conference.org.conf:2)
wild alias *.transvision-conference.org
port 443 namevhost vicedi.com (/etc/apache2/sites-enabled/vicedi.com.conf:2)
wild alias *.vicedi.com
*:80 is a NameVirtualHost
default server ns3075207.ip-217-182-174.eu (/etc/apache2/sites-enabled/000-default.conf:1)
port 80 namevhost ns3075207.ip-217-182-174.eu (/etc/apache2/sites-enabled/000-default.conf:1)
port 80 namevhost 13juillet.com (/etc/apache2/sites-enabled/13juillet.com.conf:23)
wild alias *.13juillet.com
port 80 namevhost auberydasilva.com (/etc/apache2/sites-enabled/auberydasilva.com.conf:22)
wild alias *.auberydasilva.com
port 80 namevhost benevale.com (/etc/apache2/sites-enabled/benevale.com.conf:22)
wild alias *.benevale.com
port 80 namevhost caminhosdeportugal.com (/etc/apache2/sites-enabled/caminhosdeportugal.com.conf:23)
wild alias *.caminhosdeportugal.com
port 80 namevhost cheveublanc.com (/etc/apache2/sites-enabled/cheveublanc.com.conf:23)
wild alias *.cheveublanc.com
port 80 namevhost da-silva.fr (/etc/apache2/sites-enabled/da-silva.fr.conf:22)
wild alias *.da-silva.fr
port 80 namevhost dasilva.pt (/etc/apache2/sites-enabled/dasilva.pt.conf:23)
wild alias *.dasilva.pt
port 80 namevhost e-jori.com (/etc/apache2/sites-enabled/e-jori.com.conf:22)
alias joriavlis.com
wild alias *.e-jori.com
port 80 namevhost e-kaki.net (/etc/apache2/sites-enabled/e-kaki.net.conf:22)
wild alias *.e-kaki.net
port 80 namevhost ekonomia.pt (/etc/apache2/sites-enabled/ekonomia.pt.conf:23)
wild alias *.ekonomia.pt
port 80 namevhost emcadeamentos.com (/etc/apache2/sites-enabled/emcadeamentos.com.conf:24)
wild alias *.emcadeamentos.com
port 80 namevhost helenos.pt (/etc/apache2/sites-enabled/helenos.pt.conf:24)
wild alias *.helenos.pt
port 80 namevhost inaciem.com (/etc/apache2/sites-enabled/inaciem.com.conf:22)
wild alias *.inaciem.com
port 80 namevhost monsieurqueijo.com (/etc/apache2/sites-enabled/monsieurqueijo.com.conf:22)
wild alias *.monsieurqueijo.com
port 80 namevhost parisii.fr (/etc/apache2/sites-enabled/parisii.fr.conf:23)
wild alias *.parisii.fr
port 80 namevhost philo-cafe.net (/etc/apache2/sites-enabled/philo-cafe.net.conf:23)
wild alias *.philo-cafe.net
port 80 namevhost portugalenfrancais (/etc/apache2/sites-enabled/portugalenfrancais.com.conf:28)
alias portugalenfrancais.com
alias francoportugais.com
alias lusitanie.fr
wild alias *.portugalenfrancais.com
wild alias *.francoportugais.com
wild alias *.lusitanie.fr
port 80 namevhost static-media.com (/etc/apache2/sites-enabled/static-media.com.conf:23)
wild alias *.static-media.com
port 80 namevhost tartines.fr (/etc/apache2/sites-enabled/tartines.fr.conf:24)
wild alias *.tartines.fr
port 80 namevhost transhumanismo.pt (/etc/apache2/sites-enabled/transhumanismo.pt.conf:23)
wild alias *.transhumanismo.pt
port 80 namevhost transvision-conference.org (/etc/apache2/sites-enabled/transvision-conference.org.conf:23)
wild alias *.transvision-conference.org
port 80 namevhost vicedi.com (/etc/apache2/sites-enabled/vicedi.com.conf:22)
wild alias *.vicedi.com

post without ```

1 Like

mybigtext.txt (9.3 KB)
better this way ?