+ Responder ao Tópico



  1. #1

    Padrão apache2-default ¬¬

    galera, to há uns 3 meses com um apache 2.X instalado e rodando bem, mas desde o dia que instalei o infeliz ele tem aquele redirect chato para /var/www/apache2-default, que acaba tornando esse diretório um "documentroot", já tentei de tudo que pude pensar, mas não consegui setar o documentroot para /var/www, segue meu /etc/apache/sites-available/default já que o apache2.conf não tem nada muito interessante que eu tenha visto:

    NameVirtualHost *
    <VirtualHost *>
    ServerAdmin webmaster@localhost

    DocumentRoot /var/www/
    <Directory />
    Options FollowSymLinks
    AllowOverride None
    </Directory>
    # <Directory /var/www/>
    # Options Indexes FollowSymLinks MultiViews
    # AllowOverride None
    # Order allow,deny
    # allow from all
    # # This directive allows us to have apache2's default start page
    # # in /apache2-default/, but still have / go to the right place
    # suspeito #RedirectMatch ^/$ /apache2-default/
    # </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 /var/log/apache2/error.log

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

    CustomLog /var/log/apache2/access.log combined
    ServerSignature On

    Alias /doc/ "/usr/share/doc/"
    <Directory "/usr/share/doc/">
    Options Indexes MultiViews FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
    Allow from 127.0.0.0/255.0.0.0 ::1/128
    </Directory>

    </VirtualHost>

  2. #2

    Padrão

    posta a saida deste comando:

    apache2ctl -S

    abraços

  3. #3

    Padrão saída

    wildcard NameVirtualHosts and _default_ servers:
    *:* is a NameVirtualHost
    default server servidor.RSS (/etc/apache2/sites-enabled/000-default:2)
    port * namevhost servidor.RSS (/etc/apache2/sites-enabled/000-default:2)
    Syntax OK

    ------------------------------------------------------------------------------------
    OBS: eu comentei as linhas como estão no sites-available/default
    Última edição por Laedrus; 09-08-2007 às 17:52.