-
Notifications
You must be signed in to change notification settings - Fork 3
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
Request for explicit proxy support #122
Labels
enhancement
New feature or request
Comments
The OpenDSU team suggested the following workaround:
create a new proxy service http://my-proxy/* statically configured to proxy all requests to [https://fgt.pharmaledger.pdmfc.com/](https://fgt.pharmaledger.pdmfc.com/any-path)* (adjust local name, port number, etc, as needed.)
(This could be done creating a new pod to run nginx or apache or other proxy software of your preference, in the same network as your MAH pod).
inside the MAH runing container files, the file /fgt-workspace/apihub-root/external-volume/config/bdns.hosts should currently have
"traceability": {
"replicas": [],
"brickStorages": [
"https://fgt.pharmaledger.pdmfc.com"
],
"mqEndpoints": [
"https://fgt.pharmaledger.pdmfc.com/"
],
"anchoringServices": [
"https://fgt.pharmaledger.pdmfc.com/"
],
"notifications": [
"https://fgt.pharmaledger.pdmfc.com/"
]
},
Replace those entries with
"traceability": {
"replicas": [],
"brickStorages": [
"http://my-proxy"
],
"mqEndpoints": [
"http://my-proxy/"
],
"anchoringServices": [
"http://my-proxy/"
],
"notifications": [
"http://my-proxy/"
]
},
(I guess that this can be done on your private helm-charts configuration files).
Best regards, |
joaoluis-pdm
added a commit
that referenced
this issue
Oct 22, 2022
joaoluis-pdm
added a commit
that referenced
this issue
Oct 22, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Jean-Baptiste MARCILLE-ext requested explicit proxy support, to resolve issue with:
19 de setembro de 2022 07:08
· curl -k –noproxy ‘*’ -XGET https://fgt.pharmaledger.pdmfc.com/ fails because of a timeout
· curl -k -XGET https://fgt.pharmaledger.pdmfc.com/ indeed returns the homepage (http(s)_proxy environment variables are set in the pod and curl uses them)
19 de setembro de 2022 14:39
The text was updated successfully, but these errors were encountered: