Por que estou recebendo este erro ao tentar adicionar um novo site no Apache?

1

Estou tentando fazer algum trabalho PHP e decidi instalar o LAMP. Eu segui as instruções no seguinte site here para instalar, e também adicionar um site extra (usando / var / wwww e ter que gksu nautilus arquivos parecia inútil), então eu segui as instruções aqui em "Hosts virtuais".

No entanto, eu completei as instruções e, quando tento reiniciar o Apache, recebo a seguinte mensagem:

dan@inn0min4t3:~$ sudo /etc/init.d/apache2 restart
Syntax error on line 4 of /etc/apache2/sites-enabled/mysite:
DocumentRoot takes one argument, Root directory of the document tree
Action 'configtest' failed.
The Apache error log may have more information.
   ...fail!

E esta é minha configuração do mysite:

<VirtualHost *:80>
ServerAdmin webmaster@localhost

DocumentRoot /home/dan/Documents/Website Design/helheimr
<Directory />
    Options FollowSymLinks
    AllowOverride None
</Directory>
<Directory /home/dan/Documents/Website Design/helheimr/>
    Options Indexes FollowSymLinks MultiViews
    AllowOverride None
    Order allow,deny
    allow from all
</Directory>

ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
    AllowOverride None
    Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
    Order allow,deny
    Allow from all
</Directory>

ErrorLog ${APACHE_LOG_DIR}/error.log

# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn

CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

Desculpe se é óbvio. Passei um tempo olhando no Google e não consegui encontrar muita coisa, li que talvez fosse preciso remover o '/' no final, e tentei, mas tive o mesmo resultado.

Obrigado.

    
por Daniel Brownlow 27.11.2012 / 19:12

1 resposta

4

Não é o espaço em DocumentRoot /home/dan/Documents/Website Design/helheimr ?

Existem dois argumentos:

  • /home/dan/Documents/Website
  • Design/helheimr .

Talvez seja só renomear Website Design para WebsiteDesign , ajustar o arquivo de configuração do Apache e recarregar o arquivo de configuração do Apache.

    
por user8290 27.11.2012 / 19:23