Problem with virual domain

Discussion in 'General' started by MarcoV, Nov 20, 2005.

  1. MarcoV

    MarcoV New Member

    So i setup my server with the perfect setup debian sarge.
    During the install I used my domain name and my external ip.
    i entered my domain name (marcod.net) where you entered example.com

    my /etc/hosts file looks like this:

    127.0.0.1 localhost.localdomain localhost marcod
    85.*.*.* marcod.net marcod
    10.0.0.1 server.lan server

    # The following lines are desirable for IPv6 capable hosts
    ::1 ip6-localhost ip6-loopback
    fe00::0 ip6-localnet
    ff00::0 ip6-mcastprefix
    ff02::1 ip6-allnodes
    ff02::2 ip6-allrouters
    ff02::3 ip6-allhosts

    With the configuration of ispconfig i typed in the following:

    Please enter the IP address of the ISPConfig web: entered.my.internet ip.here
    Please enter the host name: www
    Please enter the domain: marcod.net

    In ispconfig i added a vhost for www.marcod.net with all the options that i need checked.
    The map www.marcod.net was created, and when i surf to www.marcod.net (with IE6 and a proxy because otherwise i can't get to my domain) i get the
    /var/www directory and not the directorie which was created by ispconfig which is /var/www/www.marcod.net
    also when is surf to www.marcod.net/www.marcod.net/web/index.php ie wants to download the .php files, but i did checked allow php scripts when i created the site.

    the virtual hosts files:
    ###################################
    #
    # ISPConfig vHost Configuration File
    # Version 1.0
    #
    ###################################
    #
    NameVirtualHost *.*.*.*:80
    <VirtualHost *.*.*.*:80>
    ServerName localhost
    ServerAdmin root@localhost
    DocumentRoot /var/www/sharedip
    </VirtualHost>
    #
    #
    ######################################
    # Vhost: www.marcod.net:80
    ######################################
    #
    #
    <VirtualHost *.*.*.*:80>
    SuexecUserGroup web1_marcod web1
    ServerName www.marcod.net:80
    ServerAdmin [email protected]
    DocumentRoot /var/www/web1/web
    ServerAlias www.marcod.net
    DirectoryIndex index.html index.htm index.php index.php5 index.php4 index.php3 index.shtml index.cgi index.pl index.jsp Default.htm default.htm
    ScriptAlias /cgi-bin/ /var/www/web1/cgi-bin/
    AddHandler cgi-script .cgi
    AddHandler cgi-script .pl
    ErrorLog /var/www/web1/log/error.log
    AddType application/x-httpd-php .php .php3 .php4 .php5
    <Files *.php>
    SetOutputFilter PHP
    SetInputFilter PHP
    </Files>
    <Files *.php3>
    SetOutputFilter PHP
    SetInputFilter PHP
    </Files>
    <Files *.php4>
    SetOutputFilter PHP
    SetInputFilter PHP
    </Files>
    <Files *.php5>
    SetOutputFilter PHP
    SetInputFilter PHP
    </Files>
    php_admin_flag safe_mode On
    php_admin_value open_basedir /var/www/web1/
    php_admin_value file_uploads 1
    php_admin_value upload_tmp_dir /var/www/web1/phptmp/
    php_admin_value session.save_path /var/www/web1/phptmp/
    AddType text/html .shtml
    AddOutputFilter INCLUDES .shtml
    AliasMatch ^/~([^/]+)(/(.*))? /var/www/web1/user/$1/web/$3
    AliasMatch ^/users/([^/]+)(/(.*))? /var/www/web1/user/$1/web/$3
    </VirtualHost>
    #
    I also did some reboots but that doesn't seem to help either
    The perl scripts won't work either i also see the source, i used the files from you're testfiles you have in the sticky.
    Can someone please help me
     
    Last edited: Nov 20, 2005
  2. falko

    falko Super Moderator Howtoforge Staff

    Please post the output of
    Code:
    ifconfig
    What's the IP address in
    in your Vhosts_ispconfig.conf?
     
  3. MarcoV

    MarcoV New Member

    Out put of ifconfig:
    marcod:~# ifconfig
    eth0 Link encap:Ethernet HWaddr 00:40:F4:B3:F5:99
    inet addr:10.0.0.1 Bcast:10.0.0.0 Mask:255.255.255.0
    inet6 addr: fe80::240:f4ff:feb3:f599/64 Scope:Link
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:10145 errors:0 dropped:0 overruns:0 frame:0
    TX packets:9268 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:1549903 (1.4 MiB) TX bytes:3721935 (3.5 MiB)
    Interrupt:10 Base address:0xd800

    eth0:0 Link encap:Ethernet HWaddr 00:40:F4:B3:F5:99
    inet addr:85.144.248.78 Bcast:85.255.255.255 Mask:255.255.252.0
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    Interrupt:10 Base address:0xd800

    lo Link encap:Local Loopback
    inet addr:127.0.0.1 Mask:255.0.0.0
    inet6 addr: ::1/128 Scope:Host
    UP LOOPBACK RUNNING MTU:16436 Metric:1
    RX packets:655 errors:0 dropped:0 overruns:0 frame:0
    TX packets:655 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:0
    RX bytes:51440 (50.2 KiB) TX bytes:51440 (50.2 KiB)

    And the ip adress
    <VirtualHost 85.144.248.78:80>
     
  4. falko

    falko Super Moderator Howtoforge Staff

    www.marcod.net seems to be working now... Did you find the problem?
     
  5. MarcoV

    MarcoV New Member

    no i only changed the documentroot in the vhost file to /var/www/web1/web/, changed it back now
     
    Last edited: Nov 20, 2005

Share This Page