-- You received this message because you are subscribed to the Google Groups "prosody-dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/prosody-dev. For more options, visit https://groups.google.com/d/optout.
# HG changeset patch # User Senya <[email protected]> # Date 1517475499 -7200 # Thu Feb 01 10:58:19 2018 +0200 # Node ID 147f2fffcaf0f01155bbdb24b445b47c59dba72c # Parent 759b6d0349bee764b847a06809664c1b439a3740 mod_auth_custom_http: fix documentation config example
diff -r 759b6d0349be -r 147f2fffcaf0 mod_auth_custom_http/README.markdown --- a/mod_auth_custom_http/README.markdown Wed Jan 31 22:15:27 2018 +0200 +++ b/mod_auth_custom_http/README.markdown Thu Feb 01 10:58:19 2018 +0200 @@ -15,7 +15,9 @@ ``` lua VirtualHost "example.com" authentication = "custom_http" -auth_custom_http = "http://api.example.com/auth" +auth_custom_http = { + post_url = "http://api.example.com/auth"; +} ``` Protocol
