feat: add proxy protocol support

This can be useful when the pages-server is running behing a proxy, to
keep track of the originating ip.
This commit is contained in:
Julien Malka 2024-10-14 01:42:19 +02:00 committed by Gusted
parent 168bc9047b
commit b1def1db75
6 changed files with 29 additions and 3 deletions

View file

@ -69,6 +69,10 @@ func mergeServerConfig(ctx *cli.Context, config *ServerConfig) {
if ctx.IsSet("enable-http-server") {
config.HttpServerEnabled = ctx.Bool("enable-http-server")
}
if ctx.IsSet("use-proxy-protocol") {
config.UseProxyProtocol = ctx.Bool("use-proxy-protocol")
}
if ctx.IsSet("pages-domain") {
config.MainDomain = ctx.String("pages-domain")
}