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!
@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!
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
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!