tilde stuff

This commit is contained in:
Ben Harris 2022-05-20 12:31:02 -04:00
parent 6f12f2a8e4
commit 1d8f45ea99
4 changed files with 28 additions and 21 deletions

1
.gitignore vendored
View File

@ -5,3 +5,4 @@ acme-account.json
build/
vendor/
pages
.env

View File

@ -23,8 +23,7 @@ import (
// AllowedCorsDomains lists the domains for which Cross-Origin Resource Sharing is allowed.
// TODO: make it a flag
var AllowedCorsDomains = [][]byte{
[]byte("fonts.codeberg.org"),
[]byte("design.codeberg.org"),
[]byte("tilde.team"),
}
// BlacklistedPaths specifies forbidden path prefixes for all Codeberg Pages.

View File

@ -5,33 +5,21 @@
<meta name="viewport" content="width=device-width">
<title>%status</title>
<link rel="stylesheet" href="https://design.codeberg.org/design-kit/codeberg.css" />
<link href="https://fonts.codeberg.org/dist/inter/Inter%20Web/inter.css" rel="stylesheet" />
<link href="https://fonts.codeberg.org/dist/fontawesome5/css/all.min.css" rel="stylesheet" />
<style>
body {
margin: 0; padding: 1rem; box-sizing: border-box;
width: 100%; min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
</style>
<link rel="stylesheet" href="https://tilde.team/css/hacker.css" />
<link rel="stylesheet" href="https://tilde.team/css/fork-awesome.min.css" />
</head>
<body>
<div class="container">
<i class="fa fa-search text-primary" style="font-size: 96px;"></i>
<h1 class="mb-0 text-primary">
This page was not found!
</h1>
<h1>This page was not found!</h1>
<h5 class="text-center" style="max-width: 25em;">
Sorry, this page doesn't exist or is inaccessible for other reasons (%status).<br/>
We hope this is not our fault ;) - Make sure to check the <a href="https://docs.codeberg.org/codeberg-pages/troubleshooting/" target="_blank">troubleshooting section in the Docs</a>!
</h5>
<small class="text-muted">
<img src="https://design.codeberg.org/logo-kit/icon.svg" class="align-top">
Static pages made easy - <a href="https://codeberg.page">Codeberg Pages</a>
<img src="https://tildegit.org/_/static/assets/img/logo.svg" class="align-top">
Static pages made easy - <a href="https://tildepages.org">tildepages.org</a>
</small>
</div>
</body>
</html>

19
pages.service Normal file
View File

@ -0,0 +1,19 @@
[Unit]
Description=Pages server for tildepages.org
After=network.target
[Service]
Type=simple
WorkingDirectory=/srv/pages/pages-server
EnvironmentFile=/srv/pages/pages-server/.env
ExecStart=/srv/pages/pages-server/build/codeberg-pages-server
#User=pages
#Group=nogroup
Restart=always
RestartSec=5
StartLimitInterval=60s
StartLimitBurst=3
[Install]
WantedBy=default.target