Apache2+ subdomain bei localost

  • Thread starter Thread starter Weble
  • Start date Start date
W

Weble

Guest
Hallo

ich habe folgenden VirtualHost Eintrag gemacht:

Code:
NameVirtualHost *
<VirtualHost orion.*>
    ServerAdmin webmaster@localhost
    DocumentRoot /var/www/orion
    <Directory>
        Options FollowSymLinks
        AllowOverride None
    </Directory>
    <Directory /var/www/orion/>
        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 /var/log/apache2/error.log
    LogLevel warn
    CustomLog /var/log/apache2/access.log combined
    ServerSignature On
</VirtualHost>

Das ganze klappt leider nicht :(

das ganze ist ein Homeserver d.h. keine Feste IP!
ich wollt das ganze über http://orion.localhost/ versuchen geht leider net
http://orion.weble.dyndns.org (weble.dyndns.org ist meine dynamische Domain) geht leider auch net :( kann mir jemand helfen?
 
Probier es mal so:

Code:
ServerSignature On

<Directory /var/www/orion/>
[INDENT]Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order deny,allow[/INDENT]
</Directory>

NameVirtualHost *:80
<VirtualHost *:80>
[INDENT]ServerAdmin webmaster@localhost
DocumentRoot /var/www/orion
ServerName orion.weble.dyndns.org
ServerAlias orion.localhost
ErrorLog /var/log/apache2/error.log
LogLevel warn
CustomLog /var/log/apache2/access.log combined[/INDENT]
</VirtualHost>

URL: http://httpd.apache.org/docs/2.2/vhosts/
 
Back
Top