site/index.html

71 lines
3.1 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Tildeverse Dungeon Crawl Stone Soup Server</title>
<link rel="stylesheet" href="crawl.css" type="text/css"/>
<link rel="icon" type="image/png" href="icon.png"/>
</head>
<body>
<div id="container">
<div id="logo">
<pre>
__ .__.__ .___ .__
_/ |_|__| | __| _/____ ________________ __ _ _| |
\ __\ | | / __ |/ __ \ _/ ___\_ __ \__ \\ \/ \/ / |
| | | | |__/ /_/ \ ___/ \ \___| | \// __ \\ /| |__
|__| |__|____/\____ |\___ > \___ >__| (____ /\/\_/ |____/
\/ \/ \/ \/
</pre>
</div>
<div id="content">
<p>"A roguelike adventure through dungeons filled with dangerous monsters in a quest to find the mystifyingly fabulous Orb of Zot." - <a href="http://crawl.develz.org">DCSS</a></p>
<h1><a href="http://crawl.tildeverse.org:8080">[PLAY]</a></h1>
<p>Console games via SSH <a href="dcss.key">require this key</a>. Please connect to the "dcss" user. If you are using Linux, BSD, or macOS you can connect via terminal using:</p>
<p><code>ssh -i ./dcss.key dcss@crawl.tildeverse.org</code></p>
<p>Can't stop dying? Check out the <a href="http://crawl.chaosforge.org/Crawl_Wiki">Crawl Wiki</a>, or specifically, one of the <a href="http://crawl.chaosforge.org/Strategy_guides">strategy guides</a>.</p>
<p>This instance's <a href="https://tilde.chat">Tildeverse IRC</a> channel is #crawl</p>
<p>User data can be found here:</p>
<ul>
<li><a href="/morgue">Morgue files</a></li>
<li><a href="/rcfiles">Player RC files</a></li>
<li><a href="/ttyrec">ttyrec Recordings</a></li>
<li><a href="/meta">Meta</a> (scores, milestones, etc)</li>
</ul>
<p>crawl-git/trunk is updated nightly.</p>
<p>Run a tildeverse server and want to easily provide console access to this DCSS instance for your users? Create a file at <code>/usr/local/bin/dcss</code> with the following contents, or <a href="https://crawl.tildeverse.org/dcss.sh">grab it from here</a>.</p>
<div id="codeblock">
<pre>#!/bin/sh
# get ssh key
if [ ! -f ~/.ssh/dcss ]; then
umask 077
curl -so ~/.ssh/dcss https://crawl.tildeverse.org/dcss.key
# suppress a warning about the public key format
umask 022
ssh-keygen -f ~/.ssh/dcss -y > ~/.ssh/dcss.pub
fi
exec ssh \
-i ~/.ssh/dcss \
-o VerifyHostKeyDNS=yes \
dcss@crawl.tildeverse.org</pre>
<!--
<pre>#!/bin/sh
set -e
SOURCEKEY="https://crawl.tildeverse.org/dcss.key"
MYKEY="${HOME}/.ssh/dcss.key"
if [ ! -f "$MYKEY" ]; then
mkdir -p "${HOME}/.ssh"
curl -s "$SOURCEKEY" > "$MYKEY"
chmod 600 "$MYKEY"
fi
ssh -i "$MYKEY" dcss@crawl.tildeverse.org</pre>
-->
</div>
</div>
</div>
</body>
</html>