14 lines
764 B
HTML
14 lines
764 B
HTML
<!-- directly served by the object storage (S3) origin -->
|
|
<img src='https://storage-prg1.zerops.io/my-bucket/path/to/my-image.png'/>
|
|
<img src='{{ osGetEnv "storage_cdnUrl" }}/path/to/my-image.png'/>
|
|
|
|
<!-- served cached S3 object close to users by the "storage" CDN -->
|
|
<img src='https://storage.cdn.zerops.app/my-bucket/path/to/my-image.png'/>
|
|
<img src='{{ osGetEnv "storage_apiUrl" }}/{{ osGetEnv "storage_bucketName" }}/path/to/my-image.png'/>
|
|
|
|
<!-- directly served by your app -->
|
|
<img src='/static/path/to/my-image.png'/>
|
|
|
|
<!-- served cached static content close to users by the "url" CDN -->
|
|
<img src='https://url.cdn.zerops.app/my.domain.com/static/path/to/my-image.png'/>
|
|
<img src='{{ osGetEnv "zeropsCdnUrl" }}/my.domain.com/static/path/to/my-image.png'/> |