guides to hosting your own things https://diyhosting.bhh.sh
Go to file
Luke Smith 2967576c5d
Merge branch 'qorg11-add-i2p'
2021-08-24 12:03:11 -04:00
.github/workflows autodeploy on push 2021-06-30 16:56:38 -04:00
pix i2p tweaks 2021-08-24 12:03:05 -04:00
.footer.html footers icons easier to click 2021-07-02 19:29:15 -04:00
404.html footers icons easier to click 2021-07-02 19:29:15 -04:00
README.md more submission guidelines 2021-07-01 08:45:52 -04:00
auth.html Note that ssl certificates not neded for tor 2021-07-29 16:52:44 -04:00
barsup firststuffs 2021-06-29 08:30:52 -04:00
bat.html spell form 2021-07-05 09:33:36 -04:00
bitcoin.html spell form 2021-07-05 09:33:36 -04:00
calibre.html Merge branch 'reflex229-master' 2021-08-03 13:53:54 -04:00
certbot.html Merge branch 'master' of github.com:LukeSmithxyz/landchad 2021-08-15 13:49:09 -04:00
cgi.html Update donations link 2021-07-26 12:58:16 +02:00
cron.html Another space 2021-07-13 12:38:56 -06:00
crypto.html footers icons easier to click 2021-07-02 19:29:15 -04:00
dns.html tweaks to mainpage and others 2021-08-15 13:48:59 -04:00
domain.html tweaks to mainpage and others 2021-08-15 13:48:59 -04:00
favicon.ico firststuffs 2021-06-29 08:30:52 -04:00
federation.html footers icons easier to click 2021-07-02 19:29:15 -04:00
gemini.html spell form 2021-07-05 09:33:36 -04:00
git.html Update donations link 2021-07-26 12:58:16 +02:00
gitea.html spell form 2021-07-05 09:33:36 -04:00
html.html spell form 2021-07-05 09:33:36 -04:00
html2.html footers icons easier to click 2021-07-02 19:29:15 -04:00
html4.html footers icons easier to click 2021-07-02 19:29:15 -04:00
i2p.html i2p tweaks 2021-08-24 12:03:05 -04:00
index.html i2p tweaks 2021-08-24 12:03:05 -04:00
irc.html fix small grammar mistakes 2021-07-16 17:18:36 -04:00
jitsi.html jitsi revisions 2021-08-03 13:00:43 -04:00
maintenance.html footers icons easier to click 2021-07-02 19:29:15 -04:00
matrix.html matrix tweak to be finished 2021-08-01 18:15:39 -04:00
monero.html spell form 2021-07-05 09:33:36 -04:00
nextcloud.html Updated to highlight custom info per the readme 2021-08-15 16:14:29 -05:00
nginx.html tweaks to mainpage and others 2021-08-15 13:48:59 -04:00
openalias.html spell form 2021-07-05 09:33:36 -04:00
peertube.html tweaks to mainpage and others 2021-08-15 13:48:59 -04:00
pleroma.html footers icons easier to click 2021-07-02 19:29:15 -04:00
rss-bridge.html rss bridge tweaks 2021-07-05 18:11:10 -04:00
rss.xml calibre fixes 2021-08-03 13:49:51 -04:00
rsync.html Merge branch 'master' of github.com:LukeSmithxyz/landchad 2021-07-13 14:40:27 -04:00
server.html tweaks to mainpage and others 2021-08-15 13:48:59 -04:00
sshkeys.html footers icons easier to click 2021-07-02 19:29:15 -04:00
standalone.html footers icons easier to click 2021-07-02 19:29:15 -04:00
style.css tweaks to mainpage and others 2021-08-15 13:48:59 -04:00
template.html footers icons easier to click 2021-07-02 19:29:15 -04:00
tor.html tor update 2021-08-19 07:42:28 -04:00
ufw.html spell form 2021-07-05 09:33:36 -04:00
xmpp.html close #85 2021-07-26 08:25:19 -04:00

README.md

LandChad.net (https://landchad.net)

A site dedicated to turn web peasants into Internet LandChads.

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.