How do I add a custom header to files pylons is serving from public?
|
|
a) Let your webserver serve files from /public instead of paster and configure it to pass some special headers. b) Add a special route and serve the files yourself ala
c) maybe there is a way to overwrite headers and i just dont know how. |
||
|
|
|
With a recent version of route, you can use the 'Magic path_info' feature, and follow the documentation from here to write your controller so it calls paster.DirectoryApp. In my project, I wanted to serve any file in the public directory, including subdirs, and ended with this as controller, to be able to override content_type :
|
||
|
|
