mirror of
https://github.com/tomasriveral/vps-config.git
synced 2026-08-12 10:30:45 +02:00
add basic webserver
This commit is contained in:
@@ -0,0 +1,70 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Private VPS Server</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<main>
|
||||
<header>
|
||||
<h1>Private VPS Server</h1>
|
||||
<p>
|
||||
Welcome to my private server. This VPS hosts my personal services,
|
||||
tools, and applications that I use for productivity, archiving,
|
||||
reading, and managing my own data. Everything here is self-hosted
|
||||
and maintained by me.
|
||||
</p>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
<h2>Self-hosting</h2>
|
||||
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>URL</th>
|
||||
<th>Name</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><a href="https://archive.tomasrivera.ch">archive.tomasrivera.ch</a></td>
|
||||
<td>ArchiveBox</td>
|
||||
<td>Personal web archive for saving webpages, articles, and online content.</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><a href="https://video-archive.tomasrivera.ch">video-archive.tomasrivera.ch</a></td>
|
||||
<td>FileBrowser</td>
|
||||
<td>Web archive of videos as I can't get ArchiveBox to use yt-dlp correctly</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="https://hledger.tomasrivera.ch">hledger.tomasrivera.ch</a></td>
|
||||
<td>hledger-web</td>
|
||||
<td>Web version of hledger, a robust, friendly, fast plain text accounting software
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><a href="https://rss.tomasrivera.ch">rss.tomasrivera.ch</a></td>
|
||||
<td>FreshRSS</td>
|
||||
<td>Self-hosted RSS reader for following websites and news feeds.</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><a href="https://tomasrivera.ch">tomasrivera.ch</a></td>
|
||||
<td>Personal Website</td>
|
||||
<td>This homepage served directly by Caddy.</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</section>
|
||||
<p> All of these services behind a login screen. If you need acces to one of these services, contact me.</p>
|
||||
<p> This vps config is hosted on <a href="https://github.com/tomasriveral/vps-config">GitHub</a></p>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user