diff options
| author | yyamashita <yyamashita@hetzner.yyamashita.com> | 2026-06-17 22:27:47 +0900 |
|---|---|---|
| committer | yyamashita <yyamashita@hetzner.yyamashita.com> | 2026-06-17 22:27:47 +0900 |
| commit | 5f653a4c9f7c76d461ee4377fb4e025771cff872 (patch) | |
| tree | 4cb8e8ee191bc082a69c10b99c717df948c01cca /app/routes.ts | |
| parent | b323ad4824cc62cf54a9bfa4f9f68dda4b783323 (diff) | |
Add image proxy endpoint to avoid mixed content issues
Serve external event images through /api/image?url=<encoded> so HTTP
image URLs from venue sites are fetched server-side and delivered over
HTTPS. Validates Content-Type is image/*, blocks private IPs (SSRF),
and caches responses in memory (24h TTL, 200-entry LRU).
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'app/routes.ts')
| -rw-r--r-- | app/routes.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/routes.ts b/app/routes.ts index 91757b5..21a950d 100644 --- a/app/routes.ts +++ b/app/routes.ts @@ -16,5 +16,6 @@ export default [ route("events/:id/calendar.ics", "routes/api.events.$id.ics.ts"), route("venues", "routes/api.venues.ts"), route("openapi.json", "routes/api.openapi.ts"), + route("image", "routes/api.image.ts"), ]), ] satisfies RouteConfig; |
