mirror of
https://github.com/KevinMidboe/infra-map.git
synced 2026-02-12 03:09:21 +00:00
source, static files & Dockerfile
This commit is contained in:
20
src/routes/health/+page.svelte
Normal file
20
src/routes/health/+page.svelte
Normal file
@@ -0,0 +1,20 @@
|
||||
<script>
|
||||
import PageHeader from '$lib/components/PageHeader.svelte';
|
||||
import Table from '$lib/components/Table.svelte';
|
||||
|
||||
let columns = ['Domain', 'Status'];
|
||||
let data = [
|
||||
{ Domain: 'laravel-ucm1d.kinsta.app', Status: 'Live' },
|
||||
{ Domain: 'laravel-ucm1d.kinsta.app', Status: 'Live' },
|
||||
{ Domain: 'laravel-ucm1d.kinsta.app', Status: 'Live' }
|
||||
];
|
||||
</script>
|
||||
|
||||
<PageHeader>Health</PageHeader>
|
||||
|
||||
<Table
|
||||
title="Domains list"
|
||||
description="All of the verified domains below point to this application and are covered by free Cloudflare SSL certificates for a secure HTTPS connection. The DNS records for the domains must be set up correctly for them to work."
|
||||
{columns}
|
||||
{data}
|
||||
/>
|
||||
Reference in New Issue
Block a user