src.nth.io/

summaryrefslogtreecommitdiff
path: root/prosody/templates/prosody.cfg.lua.j2
blob: 932464a7faf8f06214b191453d7eed9e6fea8826 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
VirtualHost "{{prosody_vhost}}"

storage = "sql"
sql = {
    driver = "PostgreSQL";
    database = "{{prosody_db}}";
    host = "localhost";
    port = {{prosody_db_port}};
    username = "{{prosody_db}}";
    password = "{{prosody_db_pass}}";
}

------ Components ------
-- You can specify components to add hosts that provide special services,
-- like multi-user conferences, and transports.
-- For more information on components, see http://prosody.im/doc/components

-- Set up a MUC (multi-user chat) room server on conference.example.com:
--Component "conference.example.com" "muc"

-- Set up a SOCKS5 bytestream proxy for server-proxied file transfers:
--Component "proxy.example.com" "proxy65"

---Set up an external component (default component port is 5347)
--Component "gateway.example.com"
--	component_secret = "password"