mirror of
https://github.com/dehydrated-io/dehydrated.git
synced 2026-01-11 22:30:44 +01:00
Example ngnix configuration on the main page is wrong! #471
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @kobaz on GitHub (Mar 19, 2020).
`
stream {
server {
map $ssl_preread_alpn_protocols $tls_port {
~\bacme-tls/1\b 10443;
default 443;
}
}
}
This is invalid ngnix syntax.
Proper example:
stream {
map $ssl_preread_alpn_protocols $tls_port {
~\bacme-tls/1\b 10443;
default 4443;
}
}
`
@lukas2511 commented on GitHub (Apr 2, 2020):
I'm currently reworking the documentation and examples completely so I'm closing all issues and pull requests that only change those files, thanks anyway!