vote up 2 vote down star
2

How can I prevent a user from accessing my app at example.appspot.com and force them to access it at example.com? I already have example.com working, but I don't want users to be able to access the appspot domain. I'm using python.

flag

3 Answers

vote up 4 vote down check

You can check if os.environ['HTTP_HOST'].endswith('.appspot.com') -- if so, then you're serving from something.appspot.com and can send a redirect, or otherwise alter your behavior as desired.

You could deploy this check-and-redirect-if-needed (or other behavior alteration of your choice) in any of various ways (decorators, WSGI middleware, inheritance from an intermediate base class of yours that subclasses webapp.RequestHandler [[or whatever other base handler class you're currently using]] and method names different than get and post in your application-level handler classes, and others yet) but I think that the key idea here is that os.environ is set by the app engine framework according to CGI standards and so you can rely on those standards (similarly WSGI builds its own environment based on the values it picks up from os.environ).

link|flag
Thanks, exactly what I was looking for. – Josh Patton Sep 1 at 22:32
vote up 1 vote down
def redirect_from_appspot(wsgi_app):
def redirect_if_needed(env, start_response):
    if env["HTTP_HOST"].startswith('my_app_name.appspot.com'):
        import webob, urlparse
        request = webob.Request(env)
        scheme, netloc, path, query, fragment = urlparse.urlsplit(request.url)
        url = urlparse.urlunsplit([scheme, 'www.my_domain.com', path, query, fragment])
        start_response('301 Moved Permanently', [('Location', url)])
        return ["301 Moved Peramanently",
              "Click Here" % url]
    else:
        return wsgi_app(env, start_response)
return redirect_if_needed
link|flag
How would you integrate this with an application? – Josh Patton Sep 24 at 20:50
vote up 0 vote down

i have no idea how mysql game does it. it looks like a redirect at appspot.

http://mysqlgame.appspot.com/

edit: i just looked at the headers, and its returning a

301 Moved Permanently

So it must be possible to configure appspot to return this

link|flag
They have moved to a new server, according to their home page. Their app must automatically do a self.response.redirect() for all requests. – Josh Patton Sep 1 at 21:47

Your Answer

Get an OpenID
or

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