site/index.html

63 lines
2.9 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 IRC channel is #dcss on the <a href="https://tilde.chat">Tildeverse IRC network</a>.
<p>User data can be found here:
<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>
</ul></p>
<p>DCSS-git/trunk is updated nightly. Morgues, RC files, and ttyrecs are <a href="https://tildegit.org/crawl">backed up to our TildeGit</a> daily.</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:</p>
<div id="codeblock">
<code>
<pre>#!/bin/sh
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>
<!--<pre>#!/bin/bash
KEYFILE=/etc/dcss/dcss.key
if [ -f $KEYFILE ]; then
ssh -i $KEYFILE dcss@crawl.tildeverse.org
else
echo "dcss SSH key does not exist."
fi</pre>-->
</code>
</div>
</div>
</div>
</body>
</html>