Base lighttpd image with common sense defaults that outputs logs to stderr
1.3K
This is a simple lighttpd + alpine image that:
The default settings should work for many cases, but can be overwritten
by mounting a different base config file.
That should be mounted on /etc/lighttpd/conf.d/000-base.conf.
This image ships with this 000-base.conf file:
# {{{ mod_status
server.modules += ( "mod_status" )
status.status-url = "/server-status"
status.config-url = "/server-config"
# }}}
# {{{ basic config
server.document-root = "/var/www/html"
server.port = 8000
# }}}
At a minimum, docker run --rm -ti -p 8000:8000 hidgweb/lighttpd will get your
container started, then if you visit http://localhost:8000 you should see
something like this:

Content type
Image
Digest
Size
5.3 MB
Last updated
almost 8 years ago
docker pull hidgweb/docker-lighttpd