Bonjour, j 'installe apache, j’ai creer des liens
ln -s /home/perso/public_htlm/site1 /var/www/
si le lien est bien creer dans le répertoire www, mais via mon browser je n’y voit que le répertoire html creer par apache, j’ai simplement lancé les droit 755 a /home/perso/public_html
Il faudrait que apache voit aussi mes droits dans /var/www/site1
dans /etc/apache2/sites-available/000-default.conf
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
<Directory /var/www>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
nano /etc/apache2/mods-enabled/userdir.conf
<IfModule mod_userdir.c>
UserDir public_html
UserDir disabled root
<Directory /home/*/public_html>
AllowOverride All
Options MultiViews Indexes SymLinksIfOwnerMatch
<Limit GET POST OPTIONS>
# Apache <= 2.2:
Order allow,deny
Allow from all
</Limit>
<LimitExcept GET POST OPTIONS>
# Apache <= 2.2:
Order deny,allow
Deny from all
</LimitExcept>
</Directory>
</IfModule>
Merci par avance pour votre aide