Eu apenas descobri isso. O problema foi causado pelo caminho da raiz no arquivo 000-default.conf
at /etc/apache2/sites-enabled directory
.
Se almoçarmos este arquivo no terminal, veremos o seguinte resultado:
<VirtualHost *:80>
...
#ServerName www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
...
</VirtualHost>
Como você pode ver na linha DocumentRoot /var/www/html
, o DocumentRoot
foi definido como /var/www/html
, que deve ser definido no seguinte endereço:
/var/www/itop
e no arquivo:
<VirtualHost *:80>
...
#ServerName www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/itop
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
...
</VirtualHost>