guides to hosting your own things
https://diyhosting.bhh.sh
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
continuous-integration/drone/push Build is passing
Details
|
1 year ago | |
---|---|---|
pix | 1 year ago | |
.drone.yml | 1 year ago | |
.footer.html | 1 year ago | |
.nav.html | 1 year ago | |
404.html | 1 year ago | |
README.md | 1 year ago | |
android-chrome-192x192.png | 1 year ago | |
android-chrome-512x512.png | 1 year ago | |
apple-touch-icon.png | 1 year ago | |
auth.html | 1 year ago | |
calibre.html | 1 year ago | |
certbot.html | 1 year ago | |
cgi.html | 1 year ago | |
cgit.html | 1 year ago | |
cron.html | 1 year ago | |
dns.html | 1 year ago | |
domain.html | 1 year ago | |
favicon-16x16.png | 1 year ago | |
favicon-32x32.png | 1 year ago | |
favicon.ico | 1 year ago | |
federation.html | 1 year ago | |
gemini.html | 1 year ago | |
git.html | 1 year ago | |
gitea.html | 1 year ago | |
html.html | 1 year ago | |
html2.html | 1 year ago | |
html4.html | 1 year ago | |
i2p.html | 1 year ago | |
index.html | 1 year ago | |
irc.html | 1 year ago | |
jitsi.html | 1 year ago | |
maintenance.html | 1 year ago | |
nextcloud.html | 1 year ago | |
nginx.html | 1 year ago | |
peertube.html | 1 year ago | |
pleroma.html | 1 year ago | |
rss-bridge.html | 1 year ago | |
rss.xml | 1 year ago | |
rsync.html | 1 year ago | |
selfhosting.html | 1 year ago | |
server.html | 1 year ago | |
sshkeys.html | 1 year ago | |
standalone.html | 1 year ago | |
style.css | 1 year ago | |
template.html | 1 year ago | |
tor.html | 1 year ago | |
ufw.html | 1 year ago | |
xmpp.html | 1 year ago |
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.