SitePoint Sponsor

User Tag List

Results 1 to 2 of 2

Thread: Virtual Host Fails

  1. #1
    Always A Novice bronze trophy
    K. Wolfe's Avatar
    Join Date
    Nov 2003
    Location
    Columbus, OH
    Posts
    1,863
    Mentioned
    28 Post(s)
    Tagged
    0 Thread(s)

    Virtual Host Fails

    Code:
    <VirtualHost *:80>
    DocumentRoot /var/www/prod/reporting/public
    ServerName 192.168.50.175
    </VirtualHost>
    
    <VirtualHost *:8080>
    DocumentRoot /var/www/dev/reporting/public
    ServerName dev.192.168.50.175
    </VirtualHost>
    
    <VirtualHost *:8089>
    DocumentRoot /var/www/dev/jqGridTest/public
    ServerName jq.192.168.50.175
    </VirtualHost>
    First two hosts work, the third does not. Not error upon apache restart. This would lead me to believe it is an iptable issue, but this ip has been added multiple times and restarted multiple times. Any thoughts?
    <?php
    //Kyle Wolfe
    echo devBlog("My Dev Notes");

  2. #2
    Certified Ethical Hacker silver trophybronze trophy dklynn's Avatar
    Join Date
    Feb 2002
    Location
    Auckland
    Posts
    14,315
    Mentioned
    15 Post(s)
    Tagged
    2 Thread(s)
    Kyle,

    I'd be willing to bet that Apache is not listening to port 8089.

    Regards,

    DK
    David K. Lynn - Data Koncepts is a long-time WebHostingBuzz (US/UK)
    Client and (unpaid) WHB Ambassador
    Updated mod_rewrite Tutorial Article (setup, config, test & write
    mod_rewrite regex w/sample code) and Code Generator

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •