image-proxy/config.example.json

14 lines
299 B
JSON
Raw Permalink Normal View History

2024-02-08 00:41:17 +01:00
{
"port": 5170,
"debug": true,
"proxy_target": "https://cdn.pronouns.cc",
"patterns": [
{
"input": "/users/([0-9a-v]{20})/([0-9a-f]+)\\.(webp|jpg)",
"output": "https://cdn.pronouns.cc/users/$1/$2.$3",
"cache_key": "user-$1-$2.$3",
"sizes": [512, 256]
}
]
}