O que há de errado com minha configuração do Apache?

0

Eu tenho em meus sites-available um 000-default.conf (vazio):

 <VirtualHost *:80>

 </VirtualHost>

e outro arquivo .conf que já habilitei (no diretório de sites disponíveis). Isso:

    <VirtualHost *:80>
            # The ServerName directive sets the request scheme, hostname and port that
            # the server uses to identify itself. This is used when creating
            # redirection URLs. In the context of virtual hosts, the ServerName
            # specifies what hostname must appear in the request's Host: header to
            # match this virtual host. For the default virtual host (this file) this
            # value is not decisive as it is used as a last resort host regardless.
            # However, you must set it for any further virtual host explicitly.
            ServerName asd.com
            ServerAlias www.asd.com

            ServerAdmin [email protected]
            DocumentRoot /srv/rypock

            <Directory /srv/rypock/>
                    AllowOverride All
                    Options Indexes FollowSymLinks
                    Require all granted
            </Directory>

            # 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 /srv/asd-log/error.log
            CustomLog /srv/asd-log/access.log combined

            # For most configuration files from conf-available/, which are
            # enabled or disabled at a global level, it is possible to
            # include a line for only one particular virtual host. For example the
            # following line enables the CGI configuration for this host only
            # after it has been globally disabled with "a2disconf".
            #Include conf-available/serve-cgi-bin.conf
    </VirtualHost>

No entanto, quando visito asd.com, meu site não é atendido. Eu reiniciei o servidor já. Qual é o problema?

    
por konyv12 17.08.2017 / 11:56

1 resposta

0

Você precisa garantir que seu site esteja ativado. Você também precisa verificar se asd.com está apontando para seu site.

Habilite seu site e reinicie o Apache com os seguintes comandos (Substitua another pelo nome do arquivo):

sudo a2ensite another.conf
sudo apache2ctl restart

Se este site estiver em sua máquina local, você pode editar o arquivo /etc/hosts e adicionar a seguinte linha a ele (Substitua o IP se o site estiver em uma máquina diferente):

127.0.1.1       asd.com

Se este for um site ativo com entradas DNS reais, talvez seja necessário aguardar um pouco até que as entradas de DNS tenham sido propagadas e atualizadas, caso você as tenha atualizado de um valor mais antigo.

Observação: como o @Mark sugeriu no seu comentário , você pode desativar o host virtual padrão com a2dissite .

sudo a2dissite 000-default
    
por Dan 17.08.2017 / 17:35