added https withe self sign ssl to backentd and healthcheck to frontend

This commit is contained in:
2025-09-10 22:07:15 +02:00
parent cf072cee0c
commit e7b964078c
12 changed files with 234 additions and 19 deletions

View File

@@ -0,0 +1,13 @@
<template>
<div class="fullscreen bg-red-5 text-white flex flex-center column">
<div class="text-h5 mb-4"> Error</div>
<div class="text-subtitle1">{{ message }}</div>
</div>
</template>
<script setup>
import { useRoute } from 'vue-router'
const route = useRoute()
const message = route.query.msg || 'An unknown error occurred.'
</script>