Opened 7 years ago

Closed 7 years ago

Last modified 7 years ago

#28609 closed Cleanup/optimization (wontfix)

Original request URI is not available to development server

Reported by: Jay Lynch Owned by: nobody
Component: Core (Management commands) Version: 1.11
Severity: Normal Keywords: server http-server runserver
Cc: Graham Dumpleton Triage Stage: Unreviewed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

When using the default development server using manage.py runserver the value settings.WSGI_APPLICATION may be used to configure the WSGI application which is executed.

If trying to use this feature to apply WSGI middleware, however, there is no way to access the original URI of the request, leaving the user unable to detect certain specific URLs they may wish to respond to, eg:

https://localhost:8000/search/test+search and
https://localhost:8000/search/test%2Bsearch appear identical to the WSGI application.

In production this is typically addressed with a uWSGI parameter passing the original request URI as REQUEST_URI, the WSGIRequestHandler has the information and can perform the same function.

Change History (9)

comment:1 by Tim Graham, 7 years ago

Cc: Graham Dumpleton added
Type: UncategorizedCleanup/optimization

I'm not sure if Django should emulate the behavior. Maybe Graham Dumpleton can advise.

comment:2 by Graham Dumpleton, 7 years ago

Some web servers do provide REQUEST_URI and to be compatible with them you could add it, but anyone using it should be well warned that it can be somewhat dangerous to rely on it.

The reason is that it is the raw path that appears in the HTTP request. This is before the web server would normalise it. It for example has not had repeating slashes removed, nor path elements such as ../. If a user doesn't clean up the URL they can put themselves at risk if they then use the path to do things like map to a filesystem path. That is, it could be used in path traversal attacks.

Often the reason people want access to REQUEST_URI is based on wanting to do things which are considered bad practice. For example, wanting to be able to see repeating slashes because they used a URI as part of the path. Or trying to see raw url encoding escape sequences such as in this case.

So you could definitely add it, but I would discourage people using it.

Last edited 7 years ago by Graham Dumpleton (previous) (diff)

comment:3 by Tim Graham, 7 years ago

Resolution: wontfix
Status: newclosed

Thanks. Graham. Given that explanation, I don't see a compelling reason to make the change in Django (adding a feature that's discouraged doesn't seem wise). Of course, users can write their own runserver implementation if they require it (or even use a different server in development, e.g. #21978). Jay, feel free to open a discussion on the DevelopersMailingList if you disagree with this conclusion. Thanks!

comment:4 by Graham Dumpleton, 7 years ago

You can use mod_wsgi-express as a development server for Django if need access to REQUEST_URI.

Since it still uses Apache under the covers, Apache will set the variable.

comment:5 by Jay Lynch, 7 years ago

Ignoring the other devserver benefits that it seems likely we'd miss out on, we don't use Apache anywhere else in the organisation at present, forcing everyone to use it in development just for this feels excessive.

I'll write up the use case properly so people can see the justification - I suspect it might not be as niche as it seems.

comment:6 by Graham Dumpleton, 7 years ago

What devserver benefits do you think you are missing out on? Using mod_wsgi-express you can enable hot reloading. It also provides other support for development which the local devserver doesn't, such as integrated pdb debugger mode and various others things. Plus, you get ability to run under model closer to a production system, such as multi threading and/or multiprocessing, and no obscuring of issues because of things devserver does on startup that production deployments don't do. Just curious.

comment:7 by Jay Lynch, 7 years ago

My mistake, sorry! I hadn't realised it was all that, I assumed based on the name it would just be an easier way to get started with mod_wsgi.

It looks quite cool. Unfortunately doesn't help much though, I don't really want to get Apache involved when we don't use it for anything else.

It feels like an awkward middle ground, adding a third incompatible environment - if we were going to go that far I'd rather go all the way and use Kubernetes to actually mirror production and have universally consistent environments. It's a while away on our current plan though, and not a project I'm keen on pulling forward for something this minor.

comment:8 by Graham Dumpleton, 7 years ago

Hopefully when you look at Kubernetes, you will look at OpenShift as well. Can give lots of guidance on running Python apps in containers using OpenShift (Kubernetes) :-)

Anyway, getting off topic.

Last edited 7 years ago by Graham Dumpleton (previous) (diff)

in reply to:  8 comment:9 by Jay Lynch, 7 years ago

Replying to Graham Dumpleton:

Hopefully when you look at Kubernetes, you will look at OpenShift as well. Can give lots of guidance on running Python apps in containers using OpenShift (Kubernetes) :-)

Anyway, getting off topic.

OpenShift looks awesome, may well reach out when we do, cheers!

Note: See TracTickets for help on using tickets.
Back to Top