logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma
commit: 04c584391ccb726a2b4b08dfd82a1ee27f36d31b
parent: 8073af6e105ec583491191ded5f76a2700402224
Author: lambda <pleromagit@rogerbraun.net>
Date:   Sun,  3 Jun 2018 19:52:48 +0000

Merge branch 'develop' into 'develop'

Added: caddy webserver config example

Closes #192

See merge request pleroma/pleroma!189

Diffstat:

Ainstallation/caddyfile-pleroma.example18++++++++++++++++++
1 file changed, 18 insertions(+), 0 deletions(-)

diff --git a/installation/caddyfile-pleroma.example b/installation/caddyfile-pleroma.example @@ -0,0 +1,18 @@ +social.domain.tld { + tls user@domain.tld + + log /var/log/caddy/pleroma.log + + cors / { + origin https://halcyon.domain.tld + origin https://pinafore.domain.tld + methods POST,PUT,DELETE,GET,PATCH,OPTIONS + allowed_headers Authorization,Content-Type,Idempotency-Key + exposed_headers Link,X-RateLimit-Reset,X-RateLimit-Limit,X-RateLimit-Remaining,X-Request-Id + } + + proxy / localhost:4000 { + websocket + transparent + } +}