I’m new to discourse and started diving into it by setting up a development system, following this howto.
Afterwards I was able to access my instance via ip address, but trying to access via hostname fails with following message:
Blocked host: discourse_example_net
To allow requests to discourse_example_net, add the following to your environment configuration:
config.hosts << “discourse_example_net”
I found this PR, but I don’t know how to set the env var.
You can prepend DISCOURSE_DEV_HOSTS=discourse_example_net to the command that starts the unicorn server, or you can set the variable in your ~/.bashrc (or the rc file of the shell you use).
I’m assuming you mean by “did not work” you still got the same error as the OP? It looks like you’re using docker for development, so you need to set this environment variable inside the container, not the host machine. I don’t use docker for development, but it looks like d/boot_dev can set variables inside the container for you: