1
0
Fork 0
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()
}