override ssl.conf when using http config #63
Loading…
Reference in New Issue
No description provided.
Delete Branch "docker_fix_conf"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Addresses #62
Apache comes with
conf.d/ssl.conf
by default when installed. This file containsListen 443
which is not needed if the user intends to run http only.This PR:
https.conf
andhttp.conf
into separate folders alongside aconf.d
directory. Contents are then copied and override included files likeconf.d/ssl.conf
when necessarydocker-compose.yaml
Dockerfile
anddocker-entrypoint.sh
to allow changing command (for example starting container without starting httpd withdocker run --rm -it luuul/4get:latest sh
)remove ssl.conf when using http configto override ssl.conf when using http config