All checks were successful
Build and Release / Create Release (push) Successful in 0s
Build and Release / Integration Tests (PostgreSQL) (push) Successful in 3m7s
Build and Release / Lint (push) Successful in 5m21s
Build and Release / Unit Tests (push) Successful in 5m46s
Build and Release / Build Binaries (amd64, linux, linux-latest) (push) Successful in 3m44s
Build and Release / Build Binaries (amd64, darwin, linux-latest) (push) Successful in 4m4s
Build and Release / Build Binaries (arm64, darwin, linux-latest) (push) Successful in 3m23s
Build and Release / Build Binaries (arm64, linux, linux-latest) (push) Successful in 3m47s
Build and Release / Build Binaries (amd64, windows, windows-latest) (push) Successful in 8h6m28s
38 lines
809 B
Go
38 lines
809 B
Go
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package setting
|
|
|
|
import (
|
|
"net/url"
|
|
|
|
"code.gitcaddy.com/server/modules/log"
|
|
)
|
|
|
|
// Proxy settings
|
|
var Proxy = struct {
|
|
Enabled bool
|
|
ProxyURL string
|
|
ProxyURLFixed *url.URL
|
|
ProxyHosts []string
|
|
}{
|
|
Enabled: false,
|
|
ProxyURL: "",
|
|
ProxyHosts: []string{},
|
|
}
|
|
|
|
func loadProxyFrom(rootCfg ConfigProvider) {
|
|
sec := rootCfg.Section("proxy")
|
|
Proxy.Enabled = sec.Key("PROXY_ENABLED").MustBool(false)
|
|
Proxy.ProxyURL = sec.Key("PROXY_URL").MustString("")
|
|
if Proxy.ProxyURL != "" {
|
|
var err error
|
|
Proxy.ProxyURLFixed, err = url.Parse(Proxy.ProxyURL)
|
|
if err != nil {
|
|
log.Error("Global PROXY_URL is not valid")
|
|
Proxy.ProxyURL = ""
|
|
}
|
|
}
|
|
Proxy.ProxyHosts = sec.Key("PROXY_HOSTS").Strings(",")
|
|
}
|