Evening all. I'm trying to set up a self-hosted qu...
# ory-selfhosting
c
Evening all. I'm trying to set up a self-hosted quick start using the
quickstart.yml
and
quickstart-standalone.yml
samples However, I'm trying to run it on a cloudy machine 😉 , so 127.0.0.1 isn't an option. I have found most of the places where I need to change the 127.0.0.1 to be the url I need. At this point I can get the "Welcome to the Ory experience" dashboard - but when I select "Sign up" I get http://myserver:4455/registration -> 303 ->http://myserver:4433/self-service/registration/browser?return_to= -> 303 -> http://127.0.0.1:4455/registration?flow=<flowid> does anyone know how / where this last 303 is coming from ? I can't find any reference to 127.0.0.1 in the yml , so can only assume it's some default somewhere - but how would I override it ?
b
Have you tried `grep`'ing your working directory? E.g.
grep -irl '127.0.0.1' .
The 303 might be the
selfservice.default_browser_return_url
. Anyhow probably a good idea to just populate the variables with a placeholder anyhow since you'll have to define them at some point regardless.
d
Aye, I think that the culprit will be
selfservice.default_browser_return_url
. Try updating that value.
c
damn voume mounting ... I think this may be the culprit
Copy code
- type: bind
        source: ./contrib/quickstart/kratos/email-password
        target: /etc/config/kratos
of course, that yml has 127.0.0.1 🤣
😅 1