Serve a HTML redirect

This commit is contained in:
David Dworken 2022-11-06 14:59:00 -08:00
parent 9cc485f3b1
commit 3e0ed67518
No known key found for this signature in database
2 changed files with 11 additions and 3 deletions

View File

@ -1,8 +1,7 @@
hishtory.dev:80 {
hishtory.dev:80, localhost:80 {
root /srv/landing
gzip
ext .html
log stdout
tls off
# redir / https://github.com/ddworken/hishtory
}
}

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="0; URL='https://github.com/ddworken/hishtory'" />
</head>
<body>
<p>See <a href="https://github.com/ddworken/hishtory">here</a>.</p>
</body>
</html>