logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git

caddyfile-pleroma.example (480B)


  1. # default Caddyfile config for Pleroma
  2. #
  3. # Simple installation instructions:
  4. # 1. Replace 'example.tld' with your instance's domain wherever it appears.
  5. # 2. Copy this section into your Caddyfile and restart Caddy.
  6. example.tld {
  7. log {
  8. output file /var/log/caddy/pleroma.log
  9. }
  10. encode gzip
  11. # this is explicitly IPv4 since Pleroma.Web.Endpoint binds on IPv4 only
  12. # and `localhost.` resolves to [::0] on some systems: see issue #930
  13. reverse_proxy 127.0.0.1:4000
  14. }