mirror of
https://codeberg.org/Codeberg/pages-server.git
synced 2025-05-12 13:07:50 +00:00
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:
parent
168bc9047b
commit
b1def1db75
6 changed files with 29 additions and 3 deletions
|
@ -109,6 +109,13 @@ var (
|
|||
EnvVars: []string{"ENABLE_HTTP_SERVER"},
|
||||
Value: false,
|
||||
},
|
||||
&cli.BoolFlag{
|
||||
Name: "use-proxy-protocol",
|
||||
Usage: "use the proxy protocol",
|
||||
EnvVars: []string{"USE_PROXY_PROTOCOL"},
|
||||
Value: false,
|
||||
},
|
||||
|
||||
// Default branches to fetch assets from
|
||||
&cli.StringSliceFlag{
|
||||
Name: "pages-branch",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue