1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-03 17:59:37 +02:00
Peertube/server/core/helpers/proxy.ts
2024-12-23 09:16:48 +01:00

9 lines
183 B
TypeScript

export function getProxy () {
return process.env.HTTPS_PROXY ||
process.env.HTTP_PROXY ||
undefined
}
export function isProxyEnabled () {
return !!getProxy()
}