Merge branch 'develop' of https://git.pleroma.social/pleroma/pleroma into develop
[akkoma] / docs / config / howto_change_ip_and_port.md
1 # How to change the port or IP Pleroma listens to
2 To change the port or IP Pleroma listens to, head over to your generated config inside the Pleroma folder at config/prod.secret.exs and edit the following according to your needs.
3 ```
4 config :pleroma, Pleroma.Web.Endpoint,
5 [...]
6 http: [ip: {127, 0, 0, 1}, port: 4000]
7 ```