diff options
author | Francis Lavoie <[email protected]> | 2023-10-22 17:47:16 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2023-10-22 17:47:16 -0400 |
commit | 4c10a05431043f573ce3207a8fbbca4c1f67d8c7 (patch) | |
tree | ea09281948089bdfb1b3fa141bf4be7876741579 /modules/caddyhttp/app.go | |
parent | fe2a02bf7ab024d2d2f649d1f7874f9655ecba3b (diff) | |
download | caddy-4c10a05431043f573ce3207a8fbbca4c1f67d8c7.tar.gz caddy-4c10a05431043f573ce3207a8fbbca4c1f67d8c7.zip |
caddyhttp: Adjust `scheme` placeholder docs (#5910)
Diffstat (limited to 'modules/caddyhttp/app.go')
-rw-r--r-- | modules/caddyhttp/app.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/caddyhttp/app.go b/modules/caddyhttp/app.go index 69cd73b96..6dc2ad365 100644 --- a/modules/caddyhttp/app.go +++ b/modules/caddyhttp/app.go @@ -73,7 +73,7 @@ func init() { // `{http.request.remote.host}` | The host (IP) part of the remote client's address // `{http.request.remote.port}` | The port part of the remote client's address // `{http.request.remote}` | The address of the remote client -// `{http.request.scheme}` | The request scheme +// `{http.request.scheme}` | The request scheme, typically `http` or `https` // `{http.request.tls.version}` | The TLS version name // `{http.request.tls.cipher_suite}` | The TLS cipher suite // `{http.request.tls.resumed}` | The TLS connection resumed a previous connection |