bind pleroma container to all interfaces again (#7)

pleromas new default config is to listen on 127.0.0.1
this setting doesn't work with an nginx reverse proxy directly on your host
This commit is contained in:
Rick 2019-06-29 11:40:26 +02:00 committed by Stanislas
parent c65299c863
commit 28ea3db52c

View file

@ -82,6 +82,7 @@ Configure Pleroma. Copy the following to `config/secret.exs`:
use Mix.Config use Mix.Config
config :pleroma, Pleroma.Web.Endpoint, config :pleroma, Pleroma.Web.Endpoint,
http: [ ip: {0, 0, 0, 0}, ],
url: [host: "pleroma.domain.tld", scheme: "https", port: 443], url: [host: "pleroma.domain.tld", scheme: "https", port: 443],
secret_key_base: "<use 'openssl rand -base64 48' to generate a key>" secret_key_base: "<use 'openssl rand -base64 48' to generate a key>"