mirror of
https://github.com/SaraSmiseth/prosody.git
synced 2025-05-05 05:30:39 +00:00
Environment variables for subdomains
This commit is contained in:
parent
32fbf2c8db
commit
b3d3eee131
4 changed files with 31 additions and 9 deletions
29
conf.d/05-vhost.cfg.lua
Normal file
29
conf.d/05-vhost.cfg.lua
Normal file
|
@ -0,0 +1,29 @@
|
|||
local domain = os.getenv("DOMAIN")
|
||||
local domain_http_upload = os.getenv("DOMAIN_HTTP_UPLOAD")
|
||||
local domain_muc = os.getenv("DOMAIN_MUC")
|
||||
local domain_proxy = os.getenv("DOMAIN_PROXY")
|
||||
|
||||
ssl = {
|
||||
key = "/usr/local/etc/prosody/certs/prosody.key";
|
||||
certificate = "/usr/local/etc/prosody/certs/prosody.crt";
|
||||
}
|
||||
|
||||
VirtualHost (domain)
|
||||
|
||||
-- Set up a http file upload because proxy65 is not working in muc
|
||||
Component (domain_http_upload) "http_upload"
|
||||
http_upload_expire_after = 60 * 60 * 24 * 7 -- a week in seconds
|
||||
|
||||
Component (domain_muc) "muc"
|
||||
name = "Prosody Chatrooms"
|
||||
restrict_room_creation = false
|
||||
max_history_messages = 20
|
||||
modules_enabled = {
|
||||
"muc_mam",
|
||||
"vcard_muc"
|
||||
}
|
||||
|
||||
-- Set up a SOCKS5 bytestream proxy for server-proxied file transfers
|
||||
Component (domain_proxy) "proxy65"
|
||||
proxy65_address = domain_proxy
|
||||
proxy65_acl = { domain }
|
Loading…
Add table
Add a link
Reference in a new issue