Desmond, thanks for that! I think nginx is a bit lighter weight and easier to configure:
https://help.ubuntu.com/community/Nginx/ReverseProxy nginx is a bit easier to configure than Apache, especially if you're just using it for development. Here's a sample reverse proxy config: server { listen 80; server_name foo.bar.no foo.bar.yes foo.bar.ok; access_log /var/log/nginx/access.log; location / { proxy_pass http://172.27.0.2/; include /etc/nginx/proxy.conf; }} -- Ikai Lan Developer Programs Engineer, Google App Engine plus.ikailan.com | twitter.com/ikai On Fri, Nov 25, 2011 at 5:36 PM, Desmond Brand <[email protected]>wrote: > I wrote more detailed instructions for how to set this up: > > http://desmondbrand.com/blog/2011/11/15/speed-up-your-app-engine-dev-server-with-an-apache-reverse-proxy/ > > > On 23 November 2011 18:43, Calvin <[email protected]> wrote: > >> On Wednesday, November 23, 2011 4:38:48 PM UTC-8, PK wrote: >>> >>> 3. Finally, this is not new and was already worked around in my >>> environment, but if you have a realistic application you need to proxy the >>> serving of static content (images/javascript/css) if you want to get any >>> work done. I use apache for that and a mini framework I have built. I >>> describe the issue more >>> here<http://www.gae123.com/articles/gaet/fir-tim-exp.html>. >>> It might also help in the long term, if you star issues >>> 343<http://code.google.com/p/googleappengine/issues/detail?id=343>, >>> 6005 and 4720. >>> >>> Do you have more details on how you do this? Do you just do a redirect >> to the Apache server when a static asset is requested from dev_appserver? >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Google App Engine" group. >> To view this discussion on the web visit >> https://groups.google.com/d/msg/google-appengine/-/M5yP6ScsCC4J. >> >> To post to this group, send email to [email protected]. >> To unsubscribe from this group, send email to >> [email protected]. >> For more options, visit this group at >> http://groups.google.com/group/google-appengine?hl=en. >> > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/google-appengine?hl=en. > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
