Simple image server
- by Joel
I have a bunch of images that I need others to browse via a web browser in pretty much the same way as Apache-Gallery.
I'd be able to dump all my images in a directory so that users hitting:
http://server:port/directory
would see small thumbnails and selecting an image would load it full size on a page with options to browse the previous or next image.
I'm looking for a non Apache solution, much like the wonderfull Python simple http server, that can be launched anywhere with minimal configuration & fuss e.g.
python -m SimpleHTTPServer 8000
In fact, the python solution above is pretty much want I want except it doesn't thumbnail the images but just a simple directory listing.
Happy to use an app written in any common language so long as it is self contained and can run on linux on a custom port (and to re-iterate, not an Apache module).