diff options
author | rinpatch <rinpatch@sdf.org> | 2019-06-23 09:31:39 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-06-23 09:31:39 +0300 |
commit | 875100de018d4e0980656a0fc75eb51f97fa0eee (patch) | |
tree | e54f56ed31654c3af691f459146a477c01ed6375 | |
parent | 72f365df07e2eba75d3339629b01e5a8913513e6 (diff) | |
download | pleroma-875100de018d4e0980656a0fc75eb51f97fa0eee.tar.gz |
Bind to 127.0.0.1 instead of 0.0.0.0 by default
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | config/config.exs | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 0dc8b547d..d3c554245 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -65,6 +65,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - MRF: Support for filtering out likely spam messages by rejecting posts from new users that contain links. ### Changed +- **Breaking:** bind to 127.0.0.1 instead of 0.0.0.0 by default - **Breaking:** Configuration: move from Pleroma.Mailer to Pleroma.Emails.Mailer - Thread containment / test for complete visibility will be skipped by default. - Enforcement of OAuth scopes diff --git a/config/config.exs b/config/config.exs index 3962ac019..0d07fc692 100644 --- a/config/config.exs +++ b/config/config.exs @@ -139,6 +139,7 @@ config :pleroma, Pleroma.Web.Endpoint, instrumenters: [Pleroma.Web.Endpoint.Instrumenter], url: [host: "localhost"], http: [ + ip: {127, 0, 0, 1}, dispatch: [ {:_, [ |