mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 17:23:36 +01:00
41 lines
867 B
Go
41 lines
867 B
Go
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
||
|
// Use of this source code is governed by a MIT-style
|
||
|
// license that can be found in the LICENSE file.
|
||
|
|
||
|
package setting
|
||
|
|
||
|
import (
|
||
|
"net/url"
|
||
|
|
||
|
"code.gitea.io/gitea/modules/log"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
// Proxy settings
|
||
|
Proxy = struct {
|
||
|
Enabled bool
|
||
|
ProxyURL string
|
||
|
ProxyURLFixed *url.URL
|
||
|
ProxyHosts []string
|
||
|
}{
|
||
|
Enabled: false,
|
||
|
ProxyURL: "",
|
||
|
ProxyHosts: []string{},
|
||
|
}
|
||
|
)
|
||
|
|
||
|
func newProxyService() {
|
||
|
sec := Cfg.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(",")
|
||
|
}
|