professional-service/examples/cdn-s3-static-website/files/about.html
Mauritz Uphoff 7faf11e0ff
All checks were successful
Default CI / Check for Open TODOs (pull_request) Successful in 25s
Default CI / Secret Scanner (TruffleHog) (pull_request) Successful in 51s
Default CI / Pre-Commit Hooks (pull_request) Successful in 1m39s
example(cdn): add example on how to use cdn with s3
2026-06-23 15:05:43 +02:00

40 lines
1.4 KiB
HTML

<!DOCTYPE html>
<!--
Copyright 2026 Schwarz Digits Cloud GmbH & Co. KG
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - STACKIT CDN Example</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<div class="container">
<h1>About this Demo</h1>
<p>This is a reference implementation showing how to:</p>
<ul>
<li>Host static files on <a href="http://stackit.com/en/products/storage/stackit-object-storage">STACKIT Object Storage</a></li>
<li>Front them with <a href="https://stackit.com/en/products/network/stackit-cdn">STACKIT CDN</a> for low-latency delivery</li>
<li>Configure bucket policies and CDN distributions via Terraform</li>
</ul>
<p><a href="/">← Back to home</a></p>
<footer>
<p>&copy; 2026 STACKIT | CDN Example</p>
</footer>
</div>
</body>
</html>