![]() | Name | Last modified | Size |
---|---|---|---|
Parent Directory | - | ||
resources/ | 2025-03-04 07:15 | - | |
httpd.conf | 2025-04-01 14:54 | 3.1K |
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.