<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel> 

	<title>Comments on: Automatically connecting to a specific website on a port other than 80</title>
	<link>http://ask.metafilter.com/161479/Automatically-connecting-to-a-specific-website-on-a-port-other-than-80/</link>
	<description>Comments on Ask MetaFilter post Automatically connecting to a specific website on a port other than 80</description>
	<pubDate>Thu, 05 Aug 2010 10:59:11 -0800</pubDate>
	<lastBuildDate>Thu, 05 Aug 2010 10:59:11 -0800</lastBuildDate>
	<language>en-us</language>
	<docs>http://blogs.law.harvard.edu/tech/rss</docs>
	<ttl>60</ttl>

	<item>
		<title>Question: Automatically connecting to a specific website on a port other than 80</title>
		<link>http://ask.metafilter.com/161479/Automatically-connecting-to-a-specific-website-on-a-port-other-than-80</link>	
		<description>Is it possible to get a browser to connect automatically to a port other than 80 for a specific website? &lt;br /&gt;&lt;br /&gt; I&apos;m currently running both Apache and IIS on my development computer. In order to do so, I&apos;ve had to bind the IIS websites to a different port than 80 (in this case 8080). This means I have to go to local.foo.com:8080, which in the smallest possible way bugs me everso minorly.&lt;br&gt;
&lt;br&gt;
I could just set up a bat file to switch between IIS and Apache and use port 80 for both, or I could just stop being bothered by the extra few keyboard strokes. However, I&apos;m wondering if there&apos;s a way to setup Firefox so that local.foo.com (and just that url) automatically connects via port 8080.</description>
		<guid isPermaLink="false">post:ask.metafilter.com,2010:site.161479</guid>
		<pubDate>Thu, 05 Aug 2010 10:55:16 -0800</pubDate>
		<dc:creator>Hartster</dc:creator>
		
			<category>apache</category>
		
			<category>iis</category>
		
			<category>firefox</category>
		
	</item> <item>
		<title>By: yeoz</title>
		<link>http://ask.metafilter.com/161479/Automatically-connecting-to-a-specific-website-on-a-port-other-than-80#2318133</link>	
		<description>um, bookmark it?</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2010:site.161479-2318133</guid>
		<pubDate>Thu, 05 Aug 2010 10:59:11 -0800</pubDate>
		<dc:creator>yeoz</dc:creator>
	</item><item>
		<title>By: SemiSophos</title>
		<link>http://ask.metafilter.com/161479/Automatically-connecting-to-a-specific-website-on-a-port-other-than-80#2318139</link>	
		<description>What you&apos;re looking for is called a reverse proxy. I&apos;m not sure what options are available on Windows, but you basically want something to accept all the traffic on port 80, and then transparently passes the request on to whatever server and port that you want. Nginx is popular for this sort of thing on the *nix side of the world.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2010:site.161479-2318139</guid>
		<pubDate>Thu, 05 Aug 2010 10:59:53 -0800</pubDate>
		<dc:creator>SemiSophos</dc:creator>
	</item><item>
		<title>By: enn</title>
		<link>http://ask.metafilter.com/161479/Automatically-connecting-to-a-specific-website-on-a-port-other-than-80#2318140</link>	
		<description>I don&apos;t know of a way to do this in Firefox. However, if I understand correctly that Apache is running on port 80, it is not difficult to set up &lt;code&gt;mod_proxy&lt;/code&gt; so that local.foo.com/iis/ or something similar is proxied to localhost:8080.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2010:site.161479-2318140</guid>
		<pubDate>Thu, 05 Aug 2010 11:00:07 -0800</pubDate>
		<dc:creator>enn</dc:creator>
	</item><item>
		<title>By: rickim</title>
		<link>http://ask.metafilter.com/161479/Automatically-connecting-to-a-specific-website-on-a-port-other-than-80#2318170</link>	
		<description>You can accomplish this (I believe) server side via something like mod_rewrite which is a plugin for apache....  &lt;br&gt;
Or how bout a static page on port 80 that links or forwards to 8080...&lt;br&gt;
There are probably dozens of solution, that may or may not work in your for up.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2010:site.161479-2318170</guid>
		<pubDate>Thu, 05 Aug 2010 11:10:33 -0800</pubDate>
		<dc:creator>rickim</dc:creator>
	</item><item>
		<title>By: fatbird</title>
		<link>http://ask.metafilter.com/161479/Automatically-connecting-to-a-specific-website-on-a-port-other-than-80#2318184</link>	
		<description>What enn said.  Have Apache proxy the IIS sites on 8080, and as a bonus, you&apos;ll be connecting to the IIS sites on port 80.&lt;br&gt;
&lt;br&gt;
In other words, you have a.com and b.com hosted locally.  a.com is hosted by Apache, b.com is hosted by IIS.  Configure Apache with named virtual hosts for a.com and b.com; configure IIS to listen for connections to b.com on 8080.  For a.com, Apache serves the site.  For b.com&apos;s configuration in Apache, use mod_proxy to proxy those connections to b.com:8080.&lt;br&gt;
&lt;br&gt;
From the browser&apos;s perspective, all you&apos;ll see is a.com or b.com.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2010:site.161479-2318184</guid>
		<pubDate>Thu, 05 Aug 2010 11:15:43 -0800</pubDate>
		<dc:creator>fatbird</dc:creator>
	</item><item>
		<title>By: finite</title>
		<link>http://ask.metafilter.com/161479/Automatically-connecting-to-a-specific-website-on-a-port-other-than-80#2318222</link>	
		<description>I don&apos;t know about windows or IIS, but in Apache on other OSes you can bind to just one IP using the &lt;a href=&quot;http://httpd.apache.org/docs/2.0/mod/mpm_common.html#listen&quot;&gt;Listen directive&lt;/a&gt;.&lt;br&gt;
&lt;br&gt;
You can also have many different loopback IPs, like 127.0.0.2 etc.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2010:site.161479-2318222</guid>
		<pubDate>Thu, 05 Aug 2010 11:30:04 -0800</pubDate>
		<dc:creator>finite</dc:creator>
	</item><item>
		<title>By: Hartster</title>
		<link>http://ask.metafilter.com/161479/Automatically-connecting-to-a-specific-website-on-a-port-other-than-80#2318246</link>	
		<description>Awesome, mod_rpoxy has worked a treat. Thanks muchly!&lt;br&gt;
&lt;br&gt;
(When googling mod_proxy, reverse proxy and ports, I then came across &lt;a href=&quot;http://ask.metafilter.com/44548/Can-apache-redirect-to-another-port-without-displaying-the-port&quot;&gt;http://ask.metafilter.com/44548/Can-apache-redirect-to-another-port-without-displaying-the-port&lt;/a&gt;. For some reason always feels weird stumbling across AskMe this way.)</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2010:site.161479-2318246</guid>
		<pubDate>Thu, 05 Aug 2010 11:43:48 -0800</pubDate>
		<dc:creator>Hartster</dc:creator>
	</item>
	</channel>
</rss>
