proxy_list.go 698 B

1234567891011121314151617
  1. package config
  2. const BuiltinProxyUrl = "/proxy/i.pximg.net" // built-in proxy route
  3. // the list of proxies on /settings
  4. var BuiltinProxyList = []string{
  5. // !!!! WE ARE NOT AFFILIATED WITH MOST OF THE PROXIES !!!!
  6. "https://pximg.exozy.me", // except this one. this one we are affiliated with.
  7. "https://pixiv.ducks.party",
  8. "https://pximg.cocomi.eu.org",
  9. // "https://mima.localghost.org/proxy/pximg", // doesn't support HTTP/1.1. only support HTTP/2. need proxy code to use a http client (not http.Client) that supports HTTP/2.
  10. "https://pixiv.darkness.services",
  11. "https://i.pixiv.re",
  12. // "https://pixiv.tatakai.top", // dead due to us :(
  13. // "https://pximg.chaotic.ninja", // incompatible
  14. }