Search results

  1. D

    Django, LiteSpeed Context / External App Config, and PATH_INFO

    an approach that seems to work and doesn't involve changing Django core files is adding a middleware request class something like this: class SetEmptyPathInfo(object): def process_request(self, request): if not request.path: request.META['PATH_INFO'] = '/'...
  2. D

    Django, LiteSpeed Context / External App Config, and PATH_INFO

    First, I'm just getting started with LiteSpeed and enjoying the experience so far. I was able to get a Django application running by setting up the External App, and Context for '/' as described in these forums. When I did so, and tried to access the root of the site, http://mysite.com/...
Top