Highly-opinionated (ex-bullshit-free) MTPROTO proxy for Telegram.
If you use v1.0 or upgrade broke you proxy, please read the chapter Version 2
Vous ne pouvez pas sélectionner plus de 25 sujetsLes noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Alexey Dolotov
a7febc2bf2
sni-router: collapse haproxy bind to comma-separated form
Switch to one-line `bind :80,[::]:80` and `bind :443,[::]:443` per
review feedback in #522. The v6only flag was self-documentation, not
load-bearing: with SO_REUSEADDR (HAProxy's default) and bindv6only=0
the kernel routes v4 packets to the more-specific AF_INET socket
regardless. Comment trimmed to match — the v6only paragraph is gone
because v6only itself is gone.
The shorter form also scales more cleanly when adding ports later,
e.g. `bind :8080,[::]:8080` on a new line.