prosody: use hashed xmpp auth

This commit is contained in:
bgrozev 2020-04-16 16:25:06 -05:00 committed by GitHub
parent 186cb607e2
commit d44230e2b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -33,7 +33,7 @@ VirtualHost "{{ .Env.XMPP_DOMAIN }}"
cyrus_application_name = "xmpp" cyrus_application_name = "xmpp"
allow_unencrypted_plain_auth = true allow_unencrypted_plain_auth = true
{{ else if eq $AUTH_TYPE "internal" }} {{ else if eq $AUTH_TYPE "internal" }}
authentication = "internal_plain" authentication = "internal_hashed"
{{ end }} {{ end }}
{{ else }} {{ else }}
authentication = "anonymous" authentication = "anonymous"
@ -67,14 +67,14 @@ VirtualHost "{{ .Env.XMPP_AUTH_DOMAIN }}"
key = "/config/certs/{{ .Env.XMPP_AUTH_DOMAIN }}.key"; key = "/config/certs/{{ .Env.XMPP_AUTH_DOMAIN }}.key";
certificate = "/config/certs/{{ .Env.XMPP_AUTH_DOMAIN }}.crt"; certificate = "/config/certs/{{ .Env.XMPP_AUTH_DOMAIN }}.crt";
} }
authentication = "internal_plain" authentication = "internal_hashed"
{{ if .Env.XMPP_RECORDER_DOMAIN }} {{ if .Env.XMPP_RECORDER_DOMAIN }}
VirtualHost "{{ .Env.XMPP_RECORDER_DOMAIN }}" VirtualHost "{{ .Env.XMPP_RECORDER_DOMAIN }}"
modules_enabled = { modules_enabled = {
"ping"; "ping";
} }
authentication = "internal_plain" authentication = "internal_hashed"
{{ end }} {{ end }}
Component "{{ .Env.XMPP_INTERNAL_MUC_DOMAIN }}" "muc" Component "{{ .Env.XMPP_INTERNAL_MUC_DOMAIN }}" "muc"

View File

@ -126,7 +126,7 @@ s2s_secure_auth = false
-- server please see http://prosody.im/doc/modules/mod_auth_internal_hashed -- server please see http://prosody.im/doc/modules/mod_auth_internal_hashed
-- for information about using the hashed backend. -- for information about using the hashed backend.
authentication = "internal_plain" authentication = "internal_hashed"
-- Select the storage backend to use. By default Prosody uses flat files -- Select the storage backend to use. By default Prosody uses flat files
-- in its configured data directory, but it also supports more backends -- in its configured data directory, but it also supports more backends