diff options
author | Matthew Holt <[email protected]> | 2020-04-14 16:11:46 -0600 |
---|---|---|
committer | Matthew Holt <[email protected]> | 2020-04-14 16:11:46 -0600 |
commit | 829e36d535cf5bbff7cf0f510608e6fca956cec4 (patch) | |
tree | e7376af9652a076f964baf76f9c01ee0f54d050b /modules/caddyhttp/caddyauth | |
parent | 2609a728936775377ae14834f9073f1bdc2f7601 (diff) | |
download | caddy-829e36d535cf5bbff7cf0f510608e6fca956cec4.tar.gz caddy-829e36d535cf5bbff7cf0f510608e6fca956cec4.zip |
httpcaddyfile: Don't lowercase placeholder contents (fixes #3264)
Diffstat (limited to 'modules/caddyhttp/caddyauth')
-rw-r--r-- | modules/caddyhttp/caddyauth/caddyauth.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/caddyhttp/caddyauth/caddyauth.go b/modules/caddyhttp/caddyauth/caddyauth.go index a6165d4d6..a88bff60d 100644 --- a/modules/caddyhttp/caddyauth/caddyauth.go +++ b/modules/caddyhttp/caddyauth/caddyauth.go @@ -29,6 +29,8 @@ func init() { // Authentication is a middleware which provides user authentication. // Rejects requests with HTTP 401 if the request is not authenticated. +// +// Its API is still experimental and may be subject to change. type Authentication struct { // A set of authentication providers. If none are specified, // all requests will always be unauthenticated. |