![]() | Name | Last modified | Size |
|---|---|---|---|
| Parent Directory | - | ||
| resources/ | 2025-10-13 15:07 | - | |
| httpd.conf | 2025-10-13 15:12 | 3.4K |
This is the actual running server configuration for this site.
It may be deployed like so:
# podman run --rm -it \ -p 127.0.0.1:1080:80 \ -v ./server:/server:ro,z \ -v ./server/resources:/resources:ro,z \ -v ./:/site:ro,z \ docker.io/httpd:latest httpd-foreground -f /server/httpd.conf
For the bind mounts,
/server/ is the location of httpd.conf,/resources/ contains style sheet, icons etc.,/site/ is the root of the published space.Inside httpd.conf, the path to /resources/ is aliased to something that minimizes the change of naming clashes, e.g. an UUID.