Closed tvld closed 5 years ago
Got it working. After tip from @saghul in https://github.com/jitsi/docker-jitsi-meet/issues/15 I removed folder rm -rf ~/.jitsi-meet-cfg
to activate my .env
changes: DISABLE_HTTPS=1
I am running on nginx proxy and now forward to http instead of https. Dont know if that was main cause, just guessing for now. That said, I dont think it is elegant that you need to remove a folder on host after an configuration change... I would think it is possible to keep config in one place only so container updates become predictable and repeatable over various configurations and we don't get state differences ...
That said, I dont think it is elegant that you need to remove a folder on host after an configuration change... I would think it is possible to keep config in one place only so container updates become predictable and repeatable over various configurations and we don't get state differences ...
I don't disagree :-) I'll look into lifting this limitation.
I'll look into lifting this limitation.
Excellent.
When you are at it, maybe also think for a moment about the .gitignore for .env
? As for us, there's nothing that needs to be kept secure in that file.
Idea
Maybe replace .env
with two files:
secure.env
which is in .gitignore: this file would overwrite duplicate settings in:config.env
, copy of the current .env
fileThis approach would remove the need to keep the .env
and example.env
files. Which is appreciated as .env
file put me off track when first installing: I never saw the hidden .env
in the Linux folder...
Well, that would mean the command people need to type to run this is longer, for not a good reason. The choice for .env
is not arbitrary, is what Docker Compose picks up by default.
There are certainly things you want to be secret, such as the SIP password for Jigasi.
Sounds logical.. so I like to retract my last thoughts ;)))) Sorry ))
No worries!
Jitsi have been working ok for some months, but after last Friday
docker-compose up -d --force-recreate
:I just cloned latest repo, but no result...