sorokh commented on issue #8635:
URL:
https://github.com/apache/incubator-devlake/issues/8635#issuecomment-3496610356
I got that issue also when deploying the 1.0.3-beta6 containers on AWS with
fargate
Under the hood it gives the nginx issue "invalid port in upstream"
Had to change the environment parameters of config-ui as follows (format and
define values according to your env of course ;-) ):
"environment": [
{
"name": "DEVLAKE_ENDPOINT_PROTO",
"value": "http"
},
{
"name": "GRAFANA_ENDPOINT",
"value": "grafana.devlake-ns:3000"
},
{
"name": "DEVLAKE_ENDPOINT",
"value": "devlake.devlake-ns:8080"
},
{
"name": "GRAFANA_ENDPOINT_PROTO",
"value": "http"
},
The important point being removing the protocol handler from the endpoint
definition and explicitly specifying the protocol variable.
I don't have a sane reason why this works, but it does work for me.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]