mirror of
https://github.com/TeamPiped/RYD-Proxy.git
synced 2024-08-14 23:55:54 +00:00
Prepare for a proxyless mode.
This commit is contained in:
parent
2b0fa64656
commit
a761ae1031
3 changed files with 13 additions and 5 deletions
6
docker-compose.proxyless.yml
Normal file
6
docker-compose.proxyless.yml
Normal file
|
@ -0,0 +1,6 @@
|
|||
services:
|
||||
ryd-proxy:
|
||||
image: 1337kavin/ryd-proxy:latest
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "127.0.0.1:3000:3000"
|
|
@ -9,5 +9,7 @@ services:
|
|||
restart: unless-stopped
|
||||
depends_on:
|
||||
- tor-proxy
|
||||
environment:
|
||||
- PROXY=socks5://tor-proxy:5566
|
||||
ports:
|
||||
- "127.0.0.1:3000:3000"
|
||||
|
|
10
main.go
10
main.go
|
@ -20,12 +20,12 @@ var client *http.Client
|
|||
func main() {
|
||||
|
||||
proxy := os.Getenv("PROXY")
|
||||
var httpProxy func(*http.Request) (*url.URL, error)
|
||||
|
||||
if proxy == "" {
|
||||
proxy = "socks5://tor-proxy:5566"
|
||||
}
|
||||
|
||||
if proxy != "" {
|
||||
proxyUrl, _ := url.Parse(proxy)
|
||||
httpProxy = http.ProxyURL(proxyUrl)
|
||||
}
|
||||
|
||||
client = &http.Client{
|
||||
Transport: &http.Transport{
|
||||
|
@ -41,7 +41,7 @@ func main() {
|
|||
MaxConnsPerHost: 0,
|
||||
MaxIdleConnsPerHost: 10,
|
||||
MaxIdleConns: 0,
|
||||
Proxy: http.ProxyURL(proxyUrl),
|
||||
Proxy: httpProxy,
|
||||
},
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue