Bonjour, j’ai fait ce que je pouvais, en m’appuyant des infos de divers tutos, pas de résultat. j’arrive toujours a la meme chose
soit:
nano /etc/apache2/sites-available/gestech.com.con
<VirtualHost *:80>
ServerName gestech.com
ServerAlias www.gestech.com
DocumentRoot "/home/jealdell/public_html/gestech"
<Directory "/home/jealdell/public_html/gestech">
AllowOverride All
Options -Indexes +FollowSymLinks +MultiViews
Require all granted
</Directory>
ErrorLog /var/log/apache2/error.gestech.com.log
CustomLog /var/log/apache2/access.gesteck.com.log combined
</VirtualHost>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
je l’active a2ensite gestech.com.conf et désactive le default d’origine a2dissite 000-default
Et dans ce cas la localhost est 403 Forbidden (You don’t have permission)
*avec le default j’ai bien le repertoire HTML et GESTECH du repertoire /var/www
mais jamais GESTECH du public_html
chgrp -R www-data /home/jealdell/public_html
chmod -R 775 /home/jealdell/public_html
ls -l /home/jealdell
total 44
drwxr-xr-x 2 jealdell jealdell 4096 29 août 17:37 Bureau
drwxr-xr-x 2 jealdell jealdell 4096 29 août 17:37 Documents
drwxr-xr-x 2 jealdell jealdell 4096 29 août 17:37 Images
-rwxr-xr-x 1 jealdell jealdell 6 2 sept. 12:03 index.html
drwxr-xr-x 2 jealdell jealdell 4096 29 août 17:37 Modèles
drwxr-xr-x 2 jealdell jealdell 4096 29 août 17:37 Musique
drwxr-xr-x 2 jealdell jealdell 4096 29 août 17:37 Public
drwxr-xr-x 12 jealdell www-data 4096 1 févr. 2020 public_html
drwxr-xr-x 2 jealdell jealdell 4096 29 août 17:37 Téléchargements
drwxr-xr-x 2 jealdell jealdell 4096 29 août 17:37 Vidéos
mon userdir
UserDir /home/jealdell/public_html
UserDir disabled root
Alias /jealdell /home/jealdell/public_html
<Directory /home/jealdell/public_html>
Options All
AllowOverride All
Require all granted
Options MultiViews Indexes SymLinksIfOwnerMatch
<Limit GET POST OPTIONS>
Order allow,deny
Allow from all
</Limit>
<LimitExcept GET POST OPTIONS>
Order deny,allow
Deny from all
</LimitExcept>
</Directory>
Ca devait pas etre si compliqué