Creating a stage environment on network with port 80 blocked - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T18:48:46Zhttp://stackoverflow.com/feeds/question/171044http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/171044/creating-a-stage-environment-on-network-with-port-80-blocked1Creating a stage environment on network with port 80 blockedkolrie2008-10-04T21:46:27Z2008-10-06T01:22:21Z
<p>I currently use my local web server to allow costumers to preview some applications and also to allow downloads of "nightly builds" of my open source library.</p>
<p>Problem is I changed my ISP and now my port 80 is blocked. </p>
<p>Altough I know I could easily change the port on the Apache server, I'd like to avoid that unless there's no alternative.</p>
<p>Do you know any third party service (free or paid) that would do a port forward to my website, making it transparent to someone accessing it?</p>
<p>One other idea I heard about was using mod rewrite from my current webhost to rewrite to my domain, but I'd also prefer not go this path. Besides that, do you know any .htaccess examples that actually work? I have tried this:</p>
<pre><code>RewriteEngine on
RewriteRule ^/(.*) http://www.example.com:8080/$1
</code></pre>
<p>But it doesn't seem to be working.</p>
<p>Thanks in advance for any ideas.</p>
http://stackoverflow.com/questions/171044/creating-a-stage-environment-on-network-with-port-80-blocked/171069#1710690Answer by Asaf R for Creating a stage environment on network with port 80 blockedAsaf R2008-10-04T21:56:24Z2008-10-04T21:56:24Z<p>I think most DynamicDNS services allow port-forwarding.</p>
http://stackoverflow.com/questions/171044/creating-a-stage-environment-on-network-with-port-80-blocked/171071#1710710Answer by Rolf for Creating a stage environment on network with port 80 blockedRolf2008-10-04T21:56:58Z2008-10-04T21:56:58Z<p>Ask your ISP why this is, and if you don't get an answer, switch ISPs again.</p>
http://stackoverflow.com/questions/171044/creating-a-stage-environment-on-network-with-port-80-blocked/171079#1710791Answer by Saif Khan for Creating a stage environment on network with port 80 blockedSaif Khan2008-10-04T22:03:46Z2008-10-04T22:03:46Z<p>Hi,
With port 80 being blocked, routing through Dynamic Service win't help, unless the client specifies the new port in the domain.</p>
<p>Have your local router "port-forward" traffic from a new port (say 8080) to port 80. Leave everything the same on your end.</p>
<p>Create an account with DynDNS.org and set up your dynamic service. Then have your client do <a href="http://mydomain.com:8080" rel="nofollow">http://mydomain.com:8080</a></p>
<p>That should do the trick</p>
<p>Still look into Rolf's suggestion as they are not real ISP,....seriously.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/171044/creating-a-stage-environment-on-network-with-port-80-blocked/171085#1710851Answer by Jesse Weigert for Creating a stage environment on network with port 80 blockedJesse Weigert2008-10-04T22:06:38Z2008-10-04T22:06:38Z<p>If you can't get your ISP to open up port 80 for you, and you can't switch ISPs, then use the htacccess redirect directive:</p>
<p>Redirect 301 / <a href="http://yourserver.com:8000/" rel="nofollow">http://yourserver.com:8000/</a></p>
<p>The users may notice the redirect, but they probably won't care.</p>
http://stackoverflow.com/questions/171044/creating-a-stage-environment-on-network-with-port-80-blocked/171119#1711192Answer by Saif Khan for Creating a stage environment on network with port 80 blockedSaif Khan2008-10-04T22:26:57Z2008-10-04T22:26:57Z<p>Hi,
"and back again to the costumer on a transparent way"....will be taken care of by NAT so that shouldn't be a problem.</p>
<p>To handle the request translation from one string to another, well that's an issue since you need to transform the request before it hits the server. Look into some kind of URL forwarding service</p>
<p><a href="http://www.dnsexit.com/Direct.sv?cmd=webforward" rel="nofollow">http://www.dnsexit.com/Direct.sv?cmd=webforward</a></p>
<p>Also you can setup a separate site on a provider server and have it forward requests to the specific address/link on your server.</p>
<p>Hope this helps!</p>
http://stackoverflow.com/questions/171044/creating-a-stage-environment-on-network-with-port-80-blocked/171185#1711851Answer by joelhardi for Creating a stage environment on network with port 80 blockedjoelhardi2008-10-04T23:29:49Z2008-10-04T23:29:49Z<blockquote>
<p>What I'd like is for the costumer to
type
<a href="http://myaddress.com/hello/there?a=1&b=2" rel="nofollow">http://myaddress.com/hello/there?a=1&b=2</a>
and it get translated to
<a href="http://mylocalserver.com:8080/hello/there?a=1&b=2" rel="nofollow">http://mylocalserver.com:8080/hello/there?a=1&b=2</a>
and back again to the costumer on a
transparent way.</p>
</blockquote>
<p>I believe this is the Apache RewriteRule you're looking for to redirect any URL:</p>
<pre><code>RewriteRule ^(.*)$ http://mylocalserver.com:8080$1 [R]
</code></pre>
<p>From then on the customer will be browsing <code>mylocalserver.com:8080</code> and that's what they'll see in the address bar. If what you mean by "and back again" is that they still think they're browsing <code>myaddress.com</code>, then what you're talking about is a rewriting proxy server.</p>
<p>By this, I mean you would have to rewrite all URLs not only in HTTP headers but in your HTML content as well (i.e. do a regex search/replace on the HTML), and decode, rewrite and resend all GET, POST, PUT data, too. I once wrote such a proxy, and let me tell you it's not a trivial exercise, although the principle may seem simple.</p>
<p>I would say, just be happy if you can get the redirect to work and let them browse <code>mylocalserver.com:8080</code> from that point on.</p>
http://stackoverflow.com/questions/171044/creating-a-stage-environment-on-network-with-port-80-blocked/172961#1729611Answer by kolrie for Creating a stage environment on network with port 80 blockedkolrie2008-10-06T01:22:21Z2008-10-06T01:22:21Z<p>Well, even though I appreciated the answers, I wasn't quite satisfied with the final result. I wanted my ISP changes to be transparent to my costumers and I think I managed to make it work.</p>
<p>Here's what I did: </p>
<p>I hired a cheap VPS server - <a href="http://vpslink.com/" rel="nofollow">VPSLink</a> - and chose its cheapest plan: 64Mb RAM, 2Gb HD and 1Gb monthly traffic. After a lifetime 10% discount it was only US$ 7.16 per month, pretty affordable for the job and you get a sandbox VPS server as a bonus. The hosting seems so far so good - no problems. If you want to give it a shot you can either signup from its site, indicated above or through a referral code. There are a bunch available on the internet, you just need to search. Also, I can easily create one for you if you want, just leave a comment on this answer: you'll get 10% off and I a month free. I won't post the directly here because it may seem that was the intention behind this post - which was not. </p>
<p>This account is unmanaged but it provides root access. I then configured apache to act as a Proxy to my port 80 requests, transparently forwarding them to my local website on port 8081.</p>
<p>Below are some snippets of my Apache's httpd.conf config files.</p>
<p><strong>VPS Server configuration:</strong></p>
<pre><code><VirtualHost *:80>
ServerName mydomain.com
ServerAlias www.mydomain.com *.mydomain.com
RewriteEngine On
RewriteCond %{HTTP_HOST} (.*)\.mydomain\.com [NC]
RewriteRule (.*) http://mylocalserverdns.mydomain.com:8081/%1$1 [P]
</VirtualHost>
</code></pre>
<p>This makes request like <a href="http://subdomain1.mydomain.com/script?a=b" rel="nofollow">http://subdomain1.mydomain.com/script?a=b</a> to be transparently forwarded on server side to <a href="http://mylocalserverdns.mydomain.com:8081/subdomain1/script?a=b" rel="nofollow">http://mylocalserverdns.mydomain.com:8081/subdomain1/script?a=b</a>, so I can do whatever I want from there.</p>
<p>On my local server, I did the same thing to distribute my subdomains handler. I have, for instance two Java server applications that runs on ports 8088 and 8089 locally. All I had to do was another proxy forward, now internally</p>
<p><strong>Local Server configuration:</strong></p>
<pre><code><VirtualHost *:8081>
ServerName mylocalserverdns.mydomain.com
ProxyPass /app1 http://127.0.0.1:8088
ProxyPassReverse /app1 http://127.0.0.1:8088
ProxyPassReverse /app1 http://mylocalserverdns.mydomain.com:8088/app1
ProxyPass /app2 http://127.0.0.1:8089
ProxyPassReverse /app2 http://127.0.0.1:8089
ProxyPassReverse /app2 http://mylocalserverdns.mydomain.com:8089/app2
</VirtualHost>
</code></pre>
<p>Hope this is worth if someone else is looking for the same alternative.</p>