mirror of
https://codeberg.org/VnPower/PixivFE
synced 2024-12-06 19:16:23 +01:00
23 lines
775 B
Go
23 lines
775 B
Go
package config
|
|
|
|
const BuiltinProxyUrl = "/proxy/i.pximg.net" // built-in proxy route
|
|
|
|
// the list of proxies on /settings
|
|
var BuiltinProxyList = []string{
|
|
// !!!! WE ARE NOT AFFILIATED WITH MOST OF THE PROXIES !!!!
|
|
"https://pximg.exozy.me", // except this one. this one we are affiliated with.
|
|
"https://pixiv.ducks.party",
|
|
"https://pximg.cocomi.eu.org",
|
|
"https://i.suimoe.com",
|
|
"https://i.yuki.sh",
|
|
"https://pximg.obfs.dev",
|
|
"https://pixiv.darkness.services",
|
|
"https://pixiv.tatakai.top",
|
|
"https://pi.169889.xyz",
|
|
"https://i.pixiv.re",
|
|
// "https://mima.localghost.org/proxy/pximg", // only supports HTTP/0.9 and HTTP/1.x when using TLS.
|
|
// "https://pximg.chaotic.ninja", // incompatible
|
|
|
|
// VnPower: Please comment non-working sites instead of deleting them.
|
|
}
|