Looking through the demos, TornadoGists and other gist snippets (based on this previous question), I haven't found any code equivalent to SimpleHTTPServer from the standard library in Python. I'm looking for a really small web server that can handle concurrent requests, with all the boilerplate that SimpleHTTPServer includes for serving up files from the launch directory.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|||
|
|
|
Tornado isn't really designed for serving static files. If this will see any load, you should use nginx, or something like that. And if it won't, it might be easier to use That said, it's trivial to write one:
This is just to get you started; if you're going to use it, you should make sure that you can't walk up the filesystem and access any file. Also, the script currently serves itself, which is a bit strange. |
|||||||
|