123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430 |
- {{ $C2S_REQUIRE_ENCRYPTION := .Env.PROSODY_C2S_REQUIRE_ENCRYPTION | default "1" | toBool -}}
- {{ $DISABLE_C2S_LIMIT := .Env.PROSODY_DISABLE_C2S_LIMIT | default "0" | toBool -}}
- {{ $DISABLE_S2S_LIMIT := .Env.PROSODY_DISABLE_S2S_LIMIT | default "0" | toBool -}}
- {{ $ENABLE_AUTH := .Env.ENABLE_AUTH | default "0" | toBool -}}
- {{ $ENABLE_GUEST_DOMAIN := and $ENABLE_AUTH (.Env.ENABLE_GUESTS | default "0" | toBool) -}}
- {{ $ENABLE_IPV6 := .Env.ENABLE_IPV6 | default "true" | toBool -}}
- {{ $ENABLE_RECORDING := .Env.ENABLE_RECORDING | default "0" | toBool -}}
- {{ $ENABLE_TRANSCRIPTIONS := .Env.ENABLE_TRANSCRIPTIONS | default "0" | toBool -}}
- {{ $ENABLE_VISITORS := .Env.ENABLE_VISITORS | default "0" | toBool -}}
- {{ $ENABLE_S2S := or $ENABLE_VISITORS ( .Env.PROSODY_ENABLE_S2S | default "0" | toBool ) }}
- {{ $GC_TYPE := .Env.GC_TYPE | default "incremental" -}}
- {{ $GC_INC_TH := .Env.GC_INC_TH | default 400 -}}
- {{ $GC_INC_SPEED := .Env.GC_INC_SPEED | default 250 -}}
- {{ $GC_INC_STEP_SIZE := .Env.GC_INC_STEP_SIZE | default 13 -}}
- {{ $GC_GEN_MIN_TH := .Env.GC_GEN_MIN_TH | default 20 -}}
- {{ $GC_GEN_MAX_TH := .Env.GC_GEN_MAX_TH | default 100 -}}
- {{ $LOG_LEVEL := .Env.LOG_LEVEL | default "info" }}
- {{ $PROSODY_C2S_LIMIT := .Env.PROSODY_C2S_LIMIT | default "10kb/s" -}}
- {{ $PROSODY_METRICS_ALLOWED_CIDR := .Env.PROSODY_METRICS_ALLOWED_CIDR | default "172.16.0.0/12" -}}
- {{ $PROSODY_HTTP_PORT := .Env.PROSODY_HTTP_PORT | default "5280" -}}
- {{ $PROSODY_ENABLE_METRICS := .Env.PROSODY_ENABLE_METRICS | default "false" | toBool -}}
- {{ $PROSODY_ENABLE_STANZA_COUNTS := .Env.PROSODY_ENABLE_STANZA_COUNTS | default "false" | toBool -}}
- {{ $PROSODY_ADMINS := .Env.PROSODY_ADMINS | default "" -}}
- {{ $PROSODY_ADMIN_LIST := splitList "," $PROSODY_ADMINS | compact -}}
- {{ $PROSODY_MODE := .Env.PROSODY_MODE | default "client" -}}
- {{ $TRUSTED_PROXIES := .Env.PROSODY_TRUSTED_PROXIES | default "127.0.0.1,::1" -}}
- {{ $TRUSTED_PROXY_LIST := splitList "," $TRUSTED_PROXIES | compact -}}
- {{ $PROSODY_S2S_LIMIT := .Env.PROSODY_S2S_LIMIT | default "30kb/s" -}}
- {{ $S2S_PORT := .Env.PROSODY_S2S_PORT | default "5269" }}
- {{ $STUN_HOST := .Env.STUN_HOST | default "" -}}
- {{ $STUN_PORT := .Env.STUN_PORT | default "443" -}}
- {{ $TURNS_HOST := .Env.TURNS_HOST | default "" -}}
- {{ $TURNS_HOSTS := splitList "," $TURNS_HOST | compact -}}
- {{ $TURNS_PORT := .Env.TURNS_PORT | default "443" -}}
- {{ $TURN_HOST := .Env.TURN_HOST | default "" -}}
- {{ $TURN_HOSTS := splitList "," $TURN_HOST | compact -}}
- {{ $TURN_PORT := .Env.TURN_PORT | default "443" -}}
- {{ $TURN_TRANSPORT := .Env.TURN_TRANSPORT | default "tcp" -}}
- {{ $TURN_TRANSPORTS := splitList "," $TURN_TRANSPORT | compact -}}
- {{ $TURN_TTL := .Env.TURN_TTL | default "86400" -}}
- {{ $VISITORS_MUC_PREFIX := .Env.PROSODY_VISITORS_MUC_PREFIX | default "muc" -}}
- {{ $VISITORS_XMPP_DOMAIN := .Env.VISITORS_XMPP_DOMAIN | default "meet.jitsi" -}}
- {{ $VISITORS_XMPP_SERVER := .Env.VISITORS_XMPP_SERVER | default "" -}}
- {{ $VISITORS_XMPP_SERVERS := splitList "," $VISITORS_XMPP_SERVER | compact -}}
- {{ $VISITORS_XMPP_PORT := .Env.VISITORS_XMPP_PORT | default 52220 }}
- {{ $XMPP_DOMAIN := .Env.XMPP_DOMAIN | default "meet.jitsi" -}}
- {{ $XMPP_GUEST_DOMAIN := .Env.XMPP_GUEST_DOMAIN | default "guest.meet.jitsi" -}}
- {{ $XMPP_MUC_DOMAIN := .Env.XMPP_MUC_DOMAIN | default "muc.meet.jitsi" -}}
- {{ $XMPP_PORT := .Env.XMPP_PORT | default "5222" -}}
- {{ $XMPP_HIDDEN_DOMAIN := .Env.XMPP_HIDDEN_DOMAIN | default "hidden.meet.jitsi" -}}
- -- Prosody Example Configuration File
- --
- -- Information on configuring Prosody can be found on our
- -- website at http://prosody.im/doc/configure
- --
- -- Tip: You can check that the syntax of this file is correct
- -- when you have finished by running: luac -p prosody.cfg.lua
- -- If there are any errors, it will let you know what and where
- -- they are, otherwise it will keep quiet.
- --
- -- The only thing left to do is rename this file to remove the .dist ending, and fill in the
- -- blanks. Good luck, and happy Jabbering!
- ---------- Server-wide settings ----------
- -- Settings in this section apply to the whole server and are the default settings
- -- for any virtual hosts
- -- This is a (by default, empty) list of accounts that are admins
- -- for the server. Note that you must create the accounts separately
- -- (see http://prosody.im/doc/creating_accounts for info)
- -- Example: admins = { "user1@example.com", "user2@example.net" }
- admins = { {{ if .Env.PROSODY_ADMINS }}{{ range $index, $element := $PROSODY_ADMIN_LIST -}}{{ if $index }}, {{ end }}"{{ $element }}"{{ end }}{{ end }} }
- -- Enable use of libevent for better performance under high load
- -- For more information see: http://prosody.im/doc/libevent
- --use_libevent = true;
- -- This is the list of modules Prosody will load on startup.
- -- It looks for mod_modulename.lua in the plugins folder, so make sure that exists too.
- -- Documentation on modules can be found at: http://prosody.im/doc/modules
- modules_enabled = {
- -- Generally required
- "roster"; -- Allow users to have a roster. Recommended ;)
- "saslauth"; -- Authentication for clients and servers. Recommended if you want to log in.
- "tls"; -- Add support for secure TLS on c2s/s2s connections
- "disco"; -- Service discovery
- {{- if eq $PROSODY_MODE "client" }}
- -- Not essential, but recommended
- "private"; -- Private XML storage (for room bookmarks, etc.)
- "limits"; -- Enable bandwidth limiting for XMPP connections
- -- These are commented by default as they have a performance impact
- --"privacy"; -- Support privacy lists
- --"compression"; -- Stream compression (Debian: requires lua-zlib module to work)
- -- Admin interfaces
- -- "admin_adhoc"; -- Allows administration via an XMPP client that supports ad-hoc commands
- --"admin_telnet"; -- Opens telnet console interface on localhost port 5582
- -- Nice to have
- "version"; -- Replies to server version requests
- {{- end }}
- "ping"; -- Replies to XMPP pings with pongs
- {{- if eq $PROSODY_MODE "visitors" }}
- "limits"; -- Enable bandwidth limiting for XMPP connections
- {{- end }}
- -- HTTP modules
- --"bosh"; -- Enable BOSH clients, aka "Jabber over HTTP"
- --"http_files"; -- Serve static files from a directory over HTTP
- -- Other specific functionality
- "posix"; -- POSIX functionality, sends server to background, enables syslog, etc.
- --"groups"; -- Shared roster support
- --"announce"; -- Send announcement to all online users
- --"welcome"; -- Welcome users who register accounts
- --"watchregistrations"; -- Alert admins of registrations
- --"motd"; -- Send a message to users when they log in
- --"legacyauth"; -- Legacy authentication. Only used by some old clients and bots.
- "http_health";
- {{ if eq $PROSODY_MODE "brewery" -}}
- "firewall"; -- Enable firewalling
- "secure_interfaces";
- {{ end -}}
- {{ if $ENABLE_S2S -}}
- "s2s_bidi";
- "certs_s2soutinjection";
- "s2sout_override";
- "s2s_whitelist";
- {{ end -}}
- {{- if or .Env.TURN_HOST .Env.TURNS_HOST }}
- "external_services";
- {{- end }}
- {{ if $PROSODY_ENABLE_METRICS }}
- -- metrics collection functionality
- "http_openmetrics";
- {{ end -}}
- {{ if $PROSODY_ENABLE_STANZA_COUNTS }}
- -- Stanza count metrics for monitoring
- "measure_stanza_counts";
- {{ end -}}
- {{ if .Env.GLOBAL_MODULES }}
- "{{ join "\";\n\"" (splitList "," .Env.GLOBAL_MODULES | compact) }}";
- {{ end }}
- };
- component_ports = { }
- https_ports = { }
- trusted_proxies = {
- {{ range $index, $proxy := $TRUSTED_PROXY_LIST }}
- "{{ $proxy }}";
- {{ end }}
- }
- {{ if eq $PROSODY_MODE "brewery" -}}
- firewall_scripts = {
- "/config/rules.d/jvb_muc_presence_filter.pfw";
- };
- {{ end -}}
- -- These modules are auto-loaded, but should you want
- -- to disable them then uncomment them here:
- modules_disabled = {
- "offline"; -- Store offline messages
- "register";
- -- "c2s"; -- Handle client connections
- {{ if not $ENABLE_S2S -}}
- "s2s"; -- Handle server-to-server connections
- {{ end -}}
- };
- -- Disable account creation by default, for security
- -- For more information see http://prosody.im/doc/creating_accounts
- allow_registration = false;
- {{ if and (ne $PROSODY_MODE "brewery") (or (not $DISABLE_C2S_LIMIT) (not $DISABLE_S2S_LIMIT)) -}}
- -- Enable rate limits for incoming connections
- limits = {
- {{ if not $DISABLE_C2S_LIMIT }}
- -- Limit incoming client connections
- c2s = {
- rate = "{{ $PROSODY_C2S_LIMIT }}";
- };
- {{ end }}
- {{ if not $DISABLE_S2S_LIMIT }}
- -- Limit incoming server connections
- s2sin = {
- rate = "{{ $PROSODY_S2S_LIMIT }}";
- };
- {{ end }}
- }
- {{ end -}}
- --Prosody garbage collector settings
- --For more information see https://prosody.im/doc/advanced_gc
- {{ if eq $GC_TYPE "generational" }}
- gc = {
- mode = "generational";
- minor_threshold = {{ $GC_GEN_MIN_TH }};
- major_threshold = {{ $GC_GEN_MAX_TH }};
- }
- {{ else }}
- gc = {
- mode = "incremental";
- threshold = {{ $GC_INC_TH }};
- speed = {{ $GC_INC_SPEED }};
- step_size = {{ $GC_INC_STEP_SIZE }};
- }
- {{ end }}
- pidfile = "/config/data/prosody.pid";
- -- Force clients to use encrypted connections? This option will
- -- prevent clients from authenticating unless they are using encryption.
- c2s_require_encryption = {{ $C2S_REQUIRE_ENCRYPTION }};
- -- set c2s port
- c2s_ports = { {{ $XMPP_PORT }} } -- Listen on specific c2s port
- {{ if $ENABLE_IPV6 }}
- c2s_interfaces = { "*", "::" }
- {{ else }}
- c2s_interfaces = { "*" }
- {{ end }}
- {{ if $ENABLE_S2S -}}
- -- set s2s port
- s2s_ports = { {{ $S2S_PORT }} } -- Listen on specific s2s port
- {{ if eq $PROSODY_MODE "visitors" -}}
- s2s_whitelist = {
- {{- if $ENABLE_VISITORS }}
- '{{ $XMPP_MUC_DOMAIN }}'; -- needed for visitors to send messages to main room
- 'visitors.{{ $XMPP_DOMAIN }}'; -- needed for sending promotion request to visitors.{{ $XMPP_DOMAIN }} component
- '{{ $XMPP_DOMAIN }}'; -- unavailable presences back to main room
- {{- end }}
- {{- if $ENABLE_GUEST_DOMAIN }}
- '{{ $XMPP_GUEST_DOMAIN }}';
- {{- end }}
- {{ if or $ENABLE_RECORDING $ENABLE_TRANSCRIPTIONS -}}
- '{{ $XMPP_HIDDEN_DOMAIN }}';
- {{- end }}
- {{- if .Env.PROSODY_VISITORS_S2S_VHOSTS }}
- '{{ join "';\n '" (splitList "," .Env.PROSODY_VISITORS_S2S_VHOSTS | compact) }}';
- {{- end }}
- }
- {{ end -}}
- {{ end -}}
- {{ if $ENABLE_VISITORS -}}
- {{ if $.Env.VISITORS_XMPP_SERVER -}}
- s2sout_override = {
- {{ range $index, $element := $VISITORS_XMPP_SERVERS -}}
- {{ $SERVER := splitn ":" 2 $element }}
- {{ $DEFAULT_PORT := add $VISITORS_XMPP_PORT $index }}
- ["{{ $VISITORS_MUC_PREFIX }}.v{{ $index }}.{{ $VISITORS_XMPP_DOMAIN }}"] = "tcp://{{ $SERVER._0 }}:{{ $SERVER._1 | default $DEFAULT_PORT }}";
- ["v{{ $index }}.{{ $VISITORS_XMPP_DOMAIN }}"] = "tcp://{{ $SERVER._0 }}:{{ $SERVER._1 | default $DEFAULT_PORT }}";
- {{ end -}}
- };
- {{ if ne $PROSODY_MODE "visitors" -}}
- s2s_whitelist = {
- {{ range $index, $element := $VISITORS_XMPP_SERVERS -}}
- "{{ $VISITORS_MUC_PREFIX }}.v{{ $index }}.{{ $VISITORS_XMPP_DOMAIN }}";
- {{ end -}}
- };
- {{ end -}}
- {{ end -}}
- {{ end -}}
- -- Force certificate authentication for server-to-server connections?
- -- This provides ideal security, but requires servers you communicate
- -- with to support encryption AND present valid, trusted certificates.
- -- NOTE: Your version of LuaSec must support certificate verification!
- -- For more information see http://prosody.im/doc/s2s#security
- s2s_secure_auth = false
- -- Many servers don't support encryption or have invalid or self-signed
- -- certificates. You can list domains here that will not be required to
- -- authenticate using certificates. They will be authenticated using DNS.
- --s2s_insecure_domains = { "gmail.com" }
- -- Even if you leave s2s_secure_auth disabled, you can still require valid
- -- certificates for some domains by specifying a list here.
- --s2s_secure_domains = { "jabber.org" }
- -- Select the authentication backend to use. The 'internal' providers
- -- use Prosody's configured data storage to store the authentication data.
- -- To allow Prosody to offer secure authentication mechanisms to clients, the
- -- default provider stores passwords in plaintext. If you do not trust your
- -- server please see http://prosody.im/doc/modules/mod_auth_internal_hashed
- -- for information about using the hashed backend.
- authentication = "internal_hashed"
- -- Select the storage backend to use. By default Prosody uses flat files
- -- in its configured data directory, but it also supports more backends
- -- through modules. An "sql" backend is included by default, but requires
- -- additional dependencies. See http://prosody.im/doc/storage for more info.
- --storage = "sql" -- Default is "internal" (Debian: "sql" requires one of the
- -- lua-dbi-sqlite3, lua-dbi-mysql or lua-dbi-postgresql packages to work)
- -- For the "sql" backend, you can uncomment *one* of the below to configure:
- --sql = { driver = "SQLite3", database = "prosody.sqlite" } -- Default. 'database' is the filename.
- --sql = { driver = "MySQL", database = "prosody", username = "prosody", password = "secret", host = "localhost" }
- --sql = { driver = "PostgreSQL", database = "prosody", username = "prosody", password = "secret", host = "localhost" }
- -- Logging configuration
- -- For advanced logging see http://prosody.im/doc/logging
- --
- -- Debian:
- -- Logs info and higher to /var/log
- -- Logs errors to syslog also
- log = {
- { levels = {min = "{{ $LOG_LEVEL }}"}, timestamps = "%Y-%m-%d %X", to = "console"};
- {{ if .Env.PROSODY_LOG_CONFIG }}
- {{ join "\n" (splitList "\\n" .Env.PROSODY_LOG_CONFIG | compact) }}
- {{ end }}
- }
- {{ if $PROSODY_ENABLE_METRICS }}
- -- Statistics Provider configuration
- statistics = "internal"
- statistics_interval = "manual"
- openmetrics_allow_cidr = "{{ $PROSODY_METRICS_ALLOWED_CIDR }}"
- {{ end }}
- {{ if .Env.TURN_CREDENTIALS -}}
- external_service_secret = "{{.Env.TURN_CREDENTIALS}}";
- {{- end }}
- {{ if or .Env.STUN_HOST .Env.TURN_HOST .Env.TURNS_HOST -}}
- external_services = {
- {{- if $STUN_HOST }}
- { type = "stun", host = "{{ $STUN_HOST }}", port = {{ $STUN_PORT }}, transport = "udp" }
- {{- end }}
- {{- if $TURN_HOST -}}
- {{- range $idx1, $host := $TURN_HOSTS -}}
- {{- range $idx2, $transport := $TURN_TRANSPORTS -}}
- {{- if or $STUN_HOST $idx1 $idx2 -}},{{- end }}
- {
- type = "turn",
- host = "{{ $host }}",
- port = {{ $TURN_PORT }},
- transport = "{{ $transport }}",
- ttl = {{ $TURN_TTL }},
- {{ if $.Env.TURN_CREDENTIALS -}}
- secret = true,
- algorithm = "turn",
- {{- end }}
- {{ if $.Env.TURN_USERNAME -}}
- username = "{{$.Env.TURN_USERNAME}}",
- {{- end }}
- {{ if $.Env.TURN_PASSWORD -}}
- password = "{{$.Env.TURN_PASSWORD}}",
- {{- end }}
- }
- {{- end -}}
- {{- end -}}
- {{- end -}}
- {{- if $TURNS_HOST -}}
- {{- range $idx, $host := $TURNS_HOSTS -}}
- {{- if or $STUN_HOST $TURN_HOST $idx -}},{{- end }}
- {
- type = "turns",
- host = "{{ $host }}",
- port = {{ $TURNS_PORT }},
- transport = "tcp",
- ttl = {{ $TURN_TTL }},
- {{ if $.Env.TURN_CREDENTIALS -}}
- secret = true,
- algorithm = "turn",
- {{- end }}
- {{ if $.Env.TURN_USERNAME -}}
- username = "{{$.Env.TURN_USERNAME}}",
- {{- end }}
- {{ if $.Env.TURN_PASSWORD -}}
- password = "{{$.Env.TURN_PASSWORD}}",
- {{- end }}
- }
- {{- end }}
- {{- end }}
- };
- {{- end }}
- {{ if .Env.GLOBAL_CONFIG }}
- {{ join "\n" (splitList "\\n" .Env.GLOBAL_CONFIG | compact) }}
- {{ end }}
- -- Enable use of native prosody 0.11 support for epoll over select
- network_backend = "epoll";
- -- Set the TCP backlog to 511 since the kernel rounds it up to the next power of 2: 512.
- network_settings = {
- tcp_backlog = 511;
- }
- unbound = {
- resolvconf = true
- }
- http_ports = { {{ $PROSODY_HTTP_PORT }} }
- {{ if $ENABLE_IPV6 }}
- http_interfaces = { "*", "::" }
- {{ else }}
- http_interfaces = { "*" }
- {{ end }}
- data_path = "/config/data"
- Include "conf.d/*.cfg.lua"
|