mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-02 14:44:13 +00:00
8 lines
328 B
Markdown
8 lines
328 B
Markdown
|
# How to change the port or IP Pleroma listens to
|
||
|
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.
|
||
|
```
|
||
|
config :pleroma, Pleroma.Web.Endpoint,
|
||
|
[...]
|
||
|
http: [ip: {127, 0, 0, 1}, port: 4000]
|
||
|
```
|