I miei progetti di app Web si trovano in una cartella in/media/disk1/Projects. Voglio servirli usando un virtualhost Apache allo http://lab/
.Errore interno server Apache 500 sul mio host virtuale
Questo è quanto ho impostato il mio host virtuale:
1. Copiato/etc/apache2/sites-available/default/etc/apache2/sites-available/lab
2 . a cura/etc/apache2/sites-available/lab al seguente:
<VirtualHost *:80>
ServerAdmin [email protected]
ServerName lab
DocumentRoot /media/disk1/Projects
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
# <Directory /var/www/>
<Directory /media/disk1/Projects>
Require all granted
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
3. Aggiunto 127.0.0.1 lab
ai miei/etc/hosts:
127.0.0.1 localhost
127.0.0.1 lab
4. accede http://lab
solo per ottenere 500 Internal Server Error
Tutti i permessi sono impostati sottocartella drwxrwxrwx Ma le mie http://lab/phpmyadmin
lavori.
Aiutami a risolvere. Grazie.
Che cosa dicono i registri errori? –
Così tanto. Qui ho appena caricato il mio /var/log/apache2/error.log http://goo.gl/DSjhEf – TechyTimo
E qui è il mio /var/log/apache2/access.log http://goo.gl/IuXT9a – TechyTimo