-
Notifications
You must be signed in to change notification settings - Fork 185
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
NO-ISSUE: Fix JBPM DevUI Quarkus HTTP Host and Port #2552
Conversation
@@ -9,11 +9,11 @@ quarkus.kogito.data-index.graphql.ui.always-include=true | |||
quarkus.http.test-port=0 | |||
|
|||
# Kogito-service | |||
kogito.service.url=http://localhost:8080 | |||
kogito.service.url=http://0.0.0.0:8080 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@thiagoelg @pefernan Should I apply this change to:
examples/sonataflow-greeting-quarkus-example/src/main/resources/application.properties
in this PR: #2511 ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe... we switched from localhost
because localhost
could have different meanings in different contexts (in a container, for example).
And our solution to run quarkus apps in dev mode on OpenShift was to replace quarkus.http.host:quarkus.http.port
with window.location.origin
basically.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thank you @thiagoelg
0.0.0.0
instead oflocalhost
for Quarkus Apps to support running dev mode on containers;quarkus.http.host
andquarkus.http.port
.