guides to hosting your own things https://diyhosting.bhh.sh
Go to file
Ben Harris e90c9deaf3
continuous-integration/drone/push Build is passing Details
add .drone.yml
2021-10-10 17:43:25 -04:00
pix remove 4chan memes 2021-10-10 17:31:21 -04:00
.drone.yml add .drone.yml 2021-10-10 17:43:25 -04:00
.footer.html fix repo link 2021-10-10 17:38:17 -04:00
404.html remove 4chan memes 2021-10-10 17:31:21 -04:00
README.md remove 4chan memes 2021-10-10 17:31:21 -04:00
auth.html remove 4chan memes 2021-10-10 17:31:21 -04:00
calibre.html fix repo link 2021-10-10 17:38:17 -04:00
certbot.html remove 4chan memes 2021-10-10 17:31:21 -04:00
cgi.html remove 4chan memes 2021-10-10 17:31:21 -04:00
cgit.html fix repo link 2021-10-10 17:38:17 -04:00
cron.html remove 4chan memes 2021-10-10 17:31:21 -04:00
dns.html remove 4chan memes 2021-10-10 17:31:21 -04:00
domain.html remove 4chan memes 2021-10-10 17:31:21 -04:00
favicon.ico firststuffs 2021-06-29 08:30:52 -04:00
federation.html remove 4chan memes 2021-10-10 17:31:21 -04:00
gemini.html remove 4chan memes 2021-10-10 17:31:21 -04:00
git.html remove 4chan memes 2021-10-10 17:31:21 -04:00
gitea.html remove 4chan memes 2021-10-10 17:31:21 -04:00
html.html remove 4chan memes 2021-10-10 17:31:21 -04:00
html2.html remove 4chan memes 2021-10-10 17:31:21 -04:00
html4.html remove 4chan memes 2021-10-10 17:31:21 -04:00
i2p.html fix repo link 2021-10-10 17:38:17 -04:00
index.html fix repo link 2021-10-10 17:38:17 -04:00
irc.html remove 4chan memes 2021-10-10 17:31:21 -04:00
jitsi.html remove 4chan memes 2021-10-10 17:31:21 -04:00
maintenance.html remove 4chan memes 2021-10-10 17:31:21 -04:00
nextcloud.html remove 4chan memes 2021-10-10 17:31:21 -04:00
nginx.html remove 4chan memes 2021-10-10 17:31:21 -04:00
peertube.html remove 4chan memes 2021-10-10 17:31:21 -04:00
pleroma.html remove 4chan memes 2021-10-10 17:31:21 -04:00
rss-bridge.html remove 4chan memes 2021-10-10 17:31:21 -04:00
rss.xml remove 4chan memes 2021-10-10 17:31:21 -04:00
rsync.html remove 4chan memes 2021-10-10 17:31:21 -04:00
selfhosting.html remove 4chan memes 2021-10-10 17:31:21 -04:00
server.html remove 4chan memes 2021-10-10 17:31:21 -04:00
sshkeys.html remove 4chan memes 2021-10-10 17:31:21 -04:00
standalone.html remove 4chan memes 2021-10-10 17:31:21 -04:00
style.css tweaks to mainpage and others 2021-08-15 13:48:59 -04:00
template.html remove 4chan memes 2021-10-10 17:31:21 -04:00
tor.html remove 4chan memes 2021-10-10 17:31:21 -04:00
ufw.html remove 4chan memes 2021-10-10 17:31:21 -04:00
xmpp.html remove 4chan memes 2021-10-10 17:31:21 -04:00

README.md

diyhosting.bhh.sh (https://diyhosting.bhh.sh)

A site dedicated to share self-hosting knowledge

Simple step-by-step text and image-based tutorials for creating websites, email servers, chat servers, server administration and everything else.

Suggestions welcome.

Submission guidelines

  • follow the general style of pre-existing articles
  • use the root user (i.e. no sudo) unless there is a specific need.
  • do not preface commands with $ or # or anything.
  • use .svg files for icons/logos and for illustrative images, keep filesize low
  • Use example.org
  • custom command/file info should be highlighted with <strong> tags

On <pre> tags

In-line code should be in <code> tags, while codeblocks should be in a <code> tag inside of a <pre> tag. <pre> allows formatting preserving whitespace. That said, do not format <pre> tags as following:

<pre><code>
	echo "Here is a command."
	echo "Here is another."
</code></pre>

but do it like this:

<pre><code>echo "Here is a command."
echo "Here is another."</code></pre>

All whitespace, including tabbing in and initial and final newlines are displayed by <pre>. To maintain consistency and avoid goofy-looking extra lines, add no extra whitespace.