Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Trying to figure out the best way to easily connect a bunch of client machines running WCF service to a LAMP server on a wide area network....

Currently just set up set up each client with DynDNS, and port forwarding at the router... Absolutely not the best situation for deployment.

Ideally would like to have a simple program they run which automatically connects them to the LAMP server....

Can anyone point me in the right direction?

Should I be looking at Reverse SSH, Windows Azure AppFabric ServiceBus?

share|improve this question
Not programming-related - belongs on serverfault ? – Paul R Mar 7 '10 at 20:16

1 Answer

A reverse proxy would certainly be relevant here.

There are a number of ways to provide this. You mention using a LAMP stack so I'm assuming that you are using Apache as a web server.

You need a couple of optional Apache modules. Proxy and Reverse Proxy.

Typically you would assign a virtual "folder" to each actual app:

https://server/app1
https://server/app2

The reverse proxy would forward requests through to the actual, internal server/port:

https://server/app1  ->  http://localhost:8000/
https://server/app2  ->  http://localhost:8001/

(or whatever configuration you want)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.