O que há de errado com o arquivo My Apache2 (Alternate) 000-default.conf?

0

Estou iniciando um curso em PHP que exigirá suas próprias páginas da Web que eu não quero entrar em conflito com meu trabalho existente. As instruções do Ubuntu estão aqui: HTTPD - Servidor Web Apache2

Veja o código abaixo no meu novo "/ etc / apache2 / sites-available / RecipeCenter". O antigo "/etc/apache2/sites-available/000-default.conf" ainda existe. A única diferença entre as duas versões é a linha para o documento raiz, que foi alterada de "/ var / www / html" para "/ var / www / RecipeCenter" no novo arquivo como mostrado abaixo. Depois de seguir as instruções, também executei o programa de atualização e reiniciei. Nenhuma mensagem de erro foi gerada.

<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 www.example.com

    ServerAdmin webmaster@localhost
    DocumentRoot /var/www/RecipeCenter

    # 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

    # 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>

# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

Digitar "localhost / RecipeCenter / testph2.php" no navegador do Firefox não funcionou. No entanto, como teste, copiei a pasta RecipeCenter para a mesma pasta da minha pasta padrão, então consegui "localhost / RecipeCenter / testph.php" funcionar. Embora isso resolva o problema, ainda tenho uma preocupação sem resposta com o motivo pelo qual o novo arquivo .conf não funcionou.

    
por Steve R. 15.11.2014 / 03:04

1 resposta

0

Você deve ligar simbolicamente seu / etc / apache2 / sites-available / RecipeCenter ao /etc/apache2/sites-enabled/100-RecipeCenter.conf. (O número não importa muito, embora os arquivos estejam incluídos em ordem alfabética, então qualquer que seja o nome que você escolher para o link simbólico, ele deve vir alfabeticamente depois de 000-default.conf.

O Apache inclui arquivos de configuração vhost de / etc / apache2 / sites-enabled. Não inclui sites disponíveis. A estrutura é feita dessa forma para permitir que você facilmente habilite / desabilite sites criando / excluindo links simbólicos em / etc / apache2 / sites-enabled, sem a necessidade de mover ou remover arquivos.

    
por MegaBrutal 05.03.2015 / 12:00