Static asset delivery
This host serves versioned, immutable static assets — stylesheets, scripts, icons and images — for Starigen services. It holds no application logic and no user data.
checking endpoint…
Served paths
| Path | Content | Cache-Control |
|---|---|---|
| /assets/css/ | Stylesheets | max-age=31536000, immutable |
| /assets/js/ | Scripts | max-age=31536000, immutable |
| /assets/img/ | Icons & images | max-age=31536000, immutable |
| /favicon.svg | Site icon | max-age=604800 |
| /health | Liveness probe | no-store |
Usage
Reference assets by their full path. Files under /assets/ are content-addressed
and never change in place, so they are safe to cache indefinitely.
<link rel="stylesheet" href="https://cdn.starigen.com/assets/base.css">
<script src="https://cdn.starigen.com/assets/js/app.js" defer></script>
Cross-origin requests are permitted for asset paths. HTTP/2 and TLS 1.3 are enabled; HTTP requests are served directly.
Notes
- Assets are immutable — publish a new filename rather than replacing an existing one.
- Directory listing is disabled; unknown paths return 404.
- This endpoint is not a general-purpose file host and does not accept uploads.