]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/helpers/proxy.ts
Remove exif tags when processing images
[github/Chocobozzz/PeerTube.git] / server / helpers / proxy.ts
1 function getProxy () {
2 return process.env.HTTPS_PROXY ||
3 process.env.HTTP_PROXY ||
4 undefined
5 }
6
7 function isProxyEnabled () {
8 return !!getProxy()
9 }
10
11 export {
12 getProxy,
13 isProxyEnabled
14 }