@Artik Not looking to change the port. I want to specify a single IP address it listens on, rather than all.
@Artik Syntax?
Note that I want to change the "http" parameters, not the "url" parameters.
prod.secret.exs was where I figured I needed to change it, but everything I've tried so far results in syntax errors.
This is the line I believe I need to add/change:
http: [port: 4000 ],
tried, but did not work:
http: [host: 127.0.0.1, port: 4000 ]
example shows :inet6 as a legal param, but that just changes it to listen to all ip6 addresses instead of all ipv4 addresses
@Artik No, this is by adding to prod.secret.exs
Tried your syntax, still syntax error:
mix: ** (SyntaxError) config/prod.secret.exs:5: syntax error before: 0.1
tried quoting the address, with and without the curly braces:
http: [ip: {"127.0.0.1"} , port: 4000]
That compiled without error, but then startup failed, "failed_to_start_child"
@lain @kaniini @eal Any idea?