Virtual Server on Apache to listen on an alternate port



In the last few days, I had to set up something a bit unusual with apache. Basically the goal was to have apache listen for connections on two different ports (the standard port 80 and an alternate port 85). The problem was that I wanted different content at each port. Port 85 was to be an .htaccess redirect for another domain (with some port forwarding magic at the firewall.) Port 80 was to remain an internal intranet page. So…. this was all done with vhosts (virtual hosts.)


The previous setup had been apache for port 80 and thttpd for port 85, but there were disadvantages with that setup (thttpd didn’t support .htaccess redirects that I could see and that solution had to resort to a redirect in an html page which wasn’t as clean a redirect.) On the Mandrake based server it was fairly simple…. in /etc/httpd/2.0/conf/vhosts/Vhosts.conf I had to setup the virtual host settings (default directory/address/port to bind…)

NameVirtualhost 192.168.5.20:85
<VirtualHost 192.168.5.20:85>
Servername myserver2.lan.net
DocumentRoot /var/www/html/redirect
</VirtualHost>

And in /etc/httpd/2.0/conf/httpd2.conf, I had to add port 85 to be listened to (and uncomment the include of the Vhost file…)

Include conf/vhosts/Vhosts.conf

<IfDefine !APACHEPROXIED>
#Removed by Apache 2.0 — Port 80
Listen 80
Listen 85
</IfDefine>

There’s a good writeup at apacheweek on virtual hosts and configuring them based on ip address and port.

Popularity: 3% [?]

Free PDF    Send article as PDF   
Blog Traffic Exchange Related Posts
  • Clamav 0.88.1 for Mandrake 10.0 Since, I've still got a few older Mandrake 10 installs that I'm maintaining as mailservers, there aren't supported security fixes for various things anymore... Friday there was news of a new clamantivirus to fix some security flaws with 0.88, new version is 0.88.1 I've taken the cooker srpm and recompiled......
  • x11vnc slow internet initial-connection performance - identd timeout So, I had the script all ready, I've got my x11vnc custom compiled to be as widely compatible as possible, I've tested thoroughly on the internal network. The next step was to test my x11vnc "one cut and paste" script over the internet. So, I visited my parents pc which......
  • Codeweavers announces 2005 and 2006 plans I saw this last week but never took the time to mention it. Codeweavers has announced their roadmap for 2005 and 2006. Codeweavers of course is the company that makes crossover office (a wine implementation to allow several windows applications to run under linux). Codeweavers is a major contributor to......
Blog Traffic Exchange Related Websites
  • Dublin Ranch Golf Course Dublin Ranch Golf Course is located in: Dublin, CA Phone: 925-556-7040 Website: http://www.dublinranchgolf.com/ Course History: This course was designed by Robert Trent Jones, Jr and offers panoramic views of the surrounding breathtaking scenery. You'll be able to spot Mount Diablo and numerous other landmarks as you complete your round. The......
  • My Journey’s July 16th 2009 Update One of the main reasons I started this site was to keep myself accountable to anyone that was reading. Ironic part, is that when I started I probably had no one reading so it was an exercise in futility! Fiscal Update My last update was on May 29, 2009 and......
  • Gold Tops Last Year's High I've been spending the past few days writing and re-writing B-school essays for the Jan 3rd deadline. Wasn't going to post until the 4th, but with gold breaking previous records, I just had too! Gold is currently trading for $857/oz, beating the previous high of $850/Oz that was set 28......

Similar Posts


See what happened this day in history from either BBC Wikipedia
Search:
Keywords:
Amazon Logo

Comments are closed.


Switch to our mobile site