copy Copy chevron-down
Storage chevron-right Source Connection browser Web ProxyThis takes about 5 minutes to set up end-to-end.
This guide explains how to connect using the WEB Proxy method via the Weekerp API.
Connect images uploaded on the web to Weekerp.
To allow Weekerp to access your images, you need to provide the following:
1. Understanding Web Proxy
Users request images through the Weekerp CDN URL.
ex) https://cdn.weekerp.com/image/{alias}/dog.jpg
Weekerp fetches the image from the Target URL (origin server) connected to {alias}.
ex) https://raw.githubusercontent.com/weekerp/test-assets/main + /dog.jpg
The origin server returns the image file.
ex) https://raw.githubusercontent.com/weekerp/test-assets/main/dog.jpg
Weekerp processes the response, delivers it to users, and caches it for 1 year.
After that, the same request is served quickly from cache without calling the origin.
If the origin server requires credentials, you can add authentication headers (e.g., Authorization) via Custom Headers.
Custom Headers cannot currently be configured directly in the Weekerp console. However, the capability is available internally—if you need it, please contact us via (inquiry linkarrow-up-right ).
2. Connection example (Target server: GitHub Repo)
Upload images and videos to a GitHub repository.
GitHub resources can be accessed via URL.
The image repository on GitHub is as follows:
https://raw.githubusercontent.com/weekerp/test-assets/main
4. Example stored files
There are 4 files under this path.
5. Public image requirements
The image must be publicly accessible like this:
https://raw.githubusercontent.com/weekerp/test-assets/main/dog.jpgarrow-up-right
6. You must have the following ready
7. After logging into Weekerp, click “Add Source” at the top-right
8. Select “Static via WEB Proxy”
(If needed) Set Base Path
If files are stored like below, BasePath can be set to / or /assets.
Request example
cdn.weekerp.com/image/{alias}/dog.jpg
Origin request
With BasePath set: https://static.example.com/assets /dog.jpg
Without BasePath: https://static.example.com/dog.jpg
For more details, please refer to BasePath .
10. Enter the source alias (alias)
Enter the alias you want to use
11. Verify the created data source
Use it like this:
cdn.weekerp.com/image /weekerp-assets/dog.jpg
cdn.weekerp.com/image /weekerp-assets/dog.jpg?ai=Rotate the image to the right
cdn.weekerp.com/video /weekerp-assets/test-video.mp4
All settings are complete.
Typically, it takes 5–10 minutes to propagate the connection across all global environments.
Last updated 2 months ago