Created
February 21, 2024 01:52
-
-
Save namazso/dc9c7c58eef43d55e8ec5a028cc42f73 to your computer and use it in GitHub Desktop.
Syanpse matrix.org media piggyback for Caddy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"match": [ | |
{ | |
"host": [ | |
"matrix.yourdomain.com" | |
], | |
"path": [ | |
"/_matrix/media/*/download/*/*", | |
"/_matrix/media/*/download/*/*/*", | |
"/_matrix/media/*/thumbnail/*/*" | |
], | |
"not": [ | |
{ | |
"path": [ | |
"/_matrix/media/*/download/yourdomain.com/*", | |
"/_matrix/media/*/download/yourdomain.com/*/*", | |
"/_matrix/media/*/thumbnail/yourdomain.com/*" | |
] | |
} | |
] | |
} | |
], | |
"handle": [ | |
{ | |
"handler": "static_response", | |
"headers": { | |
"Location": [ | |
"https://matrix-federation.matrix.org{http.request.uri}" | |
], | |
"Access-Control-Allow-Origin": [ | |
"*" | |
] | |
}, | |
"status_code": 301 | |
} | |
], | |
"terminal": true | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment