Tidy up some guide pages

master^2
Nathan Steel 3 years ago
parent a50a82f985
commit b518b94fec

@ -59,8 +59,7 @@
<pre><code>rsync -auv $USER@$HOST:$BACKUP $RESTORE</code></pre> <pre><code>rsync -auv $USER@$HOST:$BACKUP $RESTORE</code></pre>
<h2>Notes/Advanced</h2> <h2>Notes/Advanced</h2>
<pre><code> <pre><code>-r recursive. All files/directories in the path will be backed up
-r recursive. All files/directories in the path will be backed up
-a archive mode. Recursive, but with file permissions, symlinks, etc retained. -a archive mode. Recursive, but with file permissions, symlinks, etc retained.
-z compress -z compress
-b backups -b backups

@ -61,9 +61,8 @@
<li><a href="/guides/nginx-install.html">Install nginx</a></li> <li><a href="/guides/nginx-install.html">Install nginx</a></li>
<li><a href="/guides/setup-nginx-website.html">Setup an nginx website</a></li> <li><a href="/guides/setup-nginx-website.html">Setup an nginx website</a></li>
<li><a href="/guides/certbot-ssl.html">Add an SSL certificate w/Certbot</a></li> <li><a href="/guides/certbot-ssl.html">Add an SSL certificate w/Certbot</a></li>
<li><a href="/guides/nginx-web-optimisation.html">TODO: Nginx web optimisation</a></li> <li>TODO:<a href="/guides/nginx-web-optimisation.html">Nginx web optimisation</a></li>
<li>TODO:<a href="/guides/add-php-to-nginx.html">(Optional) Add PHP to your webserver</a></li> <li>TODO:<a href="/guides/add-php-to-nginx.html">(Optional) Add PHP to your webserver</a></li>
<li>TODO:Guide to front-end web development</li>
</ul> </ul>
<h2>MariaDB Database</h2> <h2>MariaDB Database</h2>
@ -78,44 +77,26 @@
<h2>Backup your server!</h2> <h2>Backup your server!</h2>
<p>Backups are super useful. If something breaks, or gets accidentally deleted you can always use a backup to get it back</p> <p>Backups are super useful. If something breaks, or gets accidentally deleted you can always use a backup to get it back</p>
<ul> <ul>
<li>TODO:<a href="/guides/backup-with-rsync.html">Backup with rsync</a></li> <li><a href="/guides/backup-with-rsync.html">Backup with rsync</a></li>
<li>TODO:<a href="/guides/backup-with-rdiff.html">Backup with rdiff-backup</a></li> <li>TODO:<a href="/guides/backup-with-rdiff.html">Backup with rdiff-backup</a></li>
<li>TODO:<a href="/guides/backup-with-cron.html">Setup backup cronjob(s)</a></li> <li><a href="/guides/backup-with-cron.html">Setup backup cronjob(s)</a></li>
</ul> </ul>
<h2>Additional services/potential guides</h2> <h2>Additional services/potential guides</h2>
<p>Unless there is an anchor, these are all "TODO", and may just be omitted from this list</p> <p>Unless there is an anchor, these are all "TODO", and may just be omitted from this list</p>
<h3>Useful tidbits</h3> <h3>Useful tidbits</h3>
<ul> <ul>
<li><a href="/guides/nginx-proxy.html">Proxy services with NGINX proxy pass</a></li> <li>TODO:<a href="/guides/nginx-proxy.html">Proxy services with NGINX proxy pass</a></li>
<li><a href="/guides/password-protect-webpage.html">Password protect webpages</a></li> <li>TODO:<a href="/guides/password-protect-webpage.html">Password protect webpages</a></li>
</ul> </ul>
<h3>Additional Services</h3> <h3>Additional Services</h3>
<ul> <ul>
<li><a href="/guides/setup-git-server.html">git</a></li> <li><a href="/guides/setup-git-server.html">git</a></li>
<li>samba</li> <li>Uptime Kuma</li>
<li>Open Media Vault</li>
<li>umami</li>
<li>uptime kuma</li>
<li>torrentbox</li> <li>torrentbox</li>
<li>jellyfin</li> <li>Jellyfin</li>
<li>VPN</li> <li>VPN</li>
<li>mailserver</li>
<li>Host client websites</li>
</ul>
<h3>Game Servers</h3>
<ul>
<li>minecraft</li>
<li>terraria</li>
<li>factorio</li>
</ul>
<h3>Additional guides</h3>
<p>These are some guides for specific use-cases, that will aid with setting up
<ul>
<li>Basic Homeserver for a web developer/designer</li>
</ul> </ul>
</section> </section>

@ -57,7 +57,7 @@
<h2>Use the git server</h2> <h2>Use the git server</h2>
<p>With all the setup out the way, the git server is now usable as a remote for any of your git repos.</p> <p>With all the setup out the way, the git server is now usable as a remote for any of your git repos.</p>
<p>So on another PC...</p> <p>So on another PC, you can use git as normal. For example.</p>
<h3>Add remote to existing repo</h3> <h3>Add remote to existing repo</h3>
<pre><code>git remote add origin git@&lt;your-server&gt;:/&lt;repo.git&gt;</code></pre> <pre><code>git remote add origin git@&lt;your-server&gt;:/&lt;repo.git&gt;</code></pre>
<h3>Clone the repo</h3> <h3>Clone the repo</h3>
@ -69,7 +69,7 @@
<p>Giving you something like this</p> <p>Giving you something like this</p>
<pre><code>git clone git@&lt;your-server&gt;:&lt;port&gt;/&lt;repo.git&gt;</code></pre> <pre><code>git clone git@&lt;your-server&gt;:&lt;port&gt;/&lt;repo.git&gt;</code></pre>
<br/> <h2>Completed</h2>
<p>From here you can use git as you would via any other provider, but with the knowledge that your remote is yours.</p> <p>From here you can use git as you would via any other provider, but with the knowledge that your remote is yours.</p>
</section> </section>

Loading…
Cancel
Save