mirror of
https://github.com/go-gitea/gitea
synced 2024-11-25 07:02:48 +01:00
Fix lint
This commit is contained in:
parent
f173431b8e
commit
1a8acdefbc
1 changed files with 1 additions and 3 deletions
|
@ -16,7 +16,7 @@ var ReverseProxyAuth = struct {
|
||||||
ReverseProxyTrustedProxies []string
|
ReverseProxyTrustedProxies []string
|
||||||
}{}
|
}{}
|
||||||
|
|
||||||
func loadReverseProxyAuthFrom(rootCfg ConfigProvider) error {
|
func loadReverseProxyAuthFrom(rootCfg ConfigProvider) {
|
||||||
serviceSec := rootCfg.Section("service")
|
serviceSec := rootCfg.Section("service")
|
||||||
|
|
||||||
ReverseProxyAuth.Enabled = serviceSec.Key("ENABLE_REVERSE_PROXY_AUTHENTICATION").MustBool()
|
ReverseProxyAuth.Enabled = serviceSec.Key("ENABLE_REVERSE_PROXY_AUTHENTICATION").MustBool()
|
||||||
|
@ -35,6 +35,4 @@ func loadReverseProxyAuthFrom(rootCfg ConfigProvider) error {
|
||||||
if len(ReverseProxyAuth.ReverseProxyTrustedProxies) == 0 {
|
if len(ReverseProxyAuth.ReverseProxyTrustedProxies) == 0 {
|
||||||
ReverseProxyAuth.ReverseProxyTrustedProxies = []string{"127.0.0.0/8", "::1/128"}
|
ReverseProxyAuth.ReverseProxyTrustedProxies = []string{"127.0.0.0/8", "::1/128"}
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue