ThePiachu
ThePiachu

Reputation: 9185

Google App Engine high performance proxy workaround

I`ve started using GAE for its high performance. When I found out that it doesn't have all the features I needed (static ip for the app, custom ports), I figured I would need to find some proxy server with similarly high performance as a workaround. My app is still in early stages of development, so there is no problem in tailoring it for this solution.

What notable cloud-based proxy servers can you recommend for use with Google App Engine to complement what can't be done in GAE?

Upvotes: 0

Views: 416

Answers (2)

Node based http / https proxy

  1. Get a VPS with an static ip address.

  2. Install Node JS

  3. Follow the instruction on this GitHub project and you will have a high performance proxy running in no time.

https://github.com/TellusTalk/Node_Proxy

Upvotes: 0

Sean Fujiwara
Sean Fujiwara

Reputation: 4546

You can try running nginx on EC2. I looked for a while to see if a service like this existed, but I never found anything.

Disclaimer: this is a link to my blog

Upvotes: 1

Related Questions