fix treatment of config values with default of null and add php sodium #13
Loading…
Reference in New Issue
No description provided.
Delete Branch "docker_fix_gen_config"
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 #12
fixes docker/gen_config.php
if a value is passed via env where the default config contained null then there would be a type mismatch and the env value would be treated as an array of values
now, if a value is passed and the default value in config.php is null (SERVER_LONG_DESCRIPTION , MARGINALIA_API_KEY) then the value passed will not be split. In other words it will be assumed that this field will not contain an array of strings.
adds php83-sodium dependency
removes checking files in certificate directory when determining whether or not to use https. Only
FOURGET_PROTO
will be used to determine protocol which will save someone from pulling hairs out if they forget to uncomment mounting their certs and want to use http.