-
Notifications
You must be signed in to change notification settings - Fork 11.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Image autoloading does not work behind proxy #851
Labels
Comments
👍 |
If it's candidate to contribution/PR you should decide if it's possible to remove I know that corporate proxy features is specific but for a self-hosted solution is really important (in my mind), but it can be also difficult for you to develop it if you are proxy-less environment. |
👍 |
This was referenced Nov 30, 2023
This was referenced Mar 22, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Autoloading gif/image feature is important feature for our team building (or flaming) but when using Rocket.Chat behind corporate proxy feature is broken even with
http_proxy
andhttps_proxy
variable set.Indeed you are using
http
orhttps
package from NodeJs that does not respect env variable likehttp_proxy
orhttps_proxy
.In order to support proxy you should:
request
package instead that respect env variable (https://github.com/request/request#controlling-proxy-behaviour-using-environment-variables)http
/https
to handle proxy for bothhttp
andhttps
(more information http://blog.vanamco.com/proxy-requests-in-node-js/)The text was updated successfully, but these errors were encountered: