mirror of
https://github.com/SaraSmiseth/prosody.git
synced 2025-05-08 06:40:31 +00:00
Move remaining defaults from entrypoint script to cfg.lua files.
This commit is contained in:
parent
5d73416ac4
commit
6a269445d7
5 changed files with 24 additions and 25 deletions
|
@ -3,7 +3,8 @@
|
|||
|
||||
local stringy = require "stringy"
|
||||
|
||||
admins = stringy.split(os.getenv("PROSODY_ADMINS"), ", ");
|
||||
local prosody_admins = os.getenv("PROSODY_ADMINS") or "";
|
||||
admins = stringy.split(prosody_admins, ", ");
|
||||
|
||||
pidfile = "/var/run/prosody/prosody.pid"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue