Change to a profile style page, added post about multiple git repos. Need to write script to auto-update blog posts.
This commit is contained in:
@ -5,15 +5,15 @@
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="robots" content="index, follow">
|
||||
<title>Posts | Rsmsn Blog</title>
|
||||
<title>Posts | Norm-Hosted 💾</title>
|
||||
<meta name="keywords" content="">
|
||||
<meta name="description" content="Posts - Rsmsn Blog">
|
||||
<meta name="description" content="Posts - Norm-Hosted 💾">
|
||||
<meta name="author" content="Norm Rasmussen">
|
||||
<link rel="canonical" href="./posts.html">
|
||||
<link crossorigin="anonymous" href="./assets/css/stylesheet.5cfc680b1eeaeef9efbced92d46c2a9e876b72ee14fba85846afc4cff9e6e6f8.css" integrity="sha256-XPxoCx7q7vnvvO2S1Gwqnodrcu4U+6hYRq/Ez/nm5vg=" rel="preload stylesheet" as="style">
|
||||
<link rel="icon" href="./static/favicon.ico">
|
||||
<link rel="icon" href="./favicon.ico">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="./favicon-16x16.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="./static/rsmsncircles.ico">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="./rsmsncircles.ico">
|
||||
<link rel="apple-touch-icon" href="./apple-touch-icon.png">
|
||||
<link rel="mask-icon" href="./safari-pinned-tab.svg">
|
||||
<meta name="theme-color" content="#2e2e33">
|
||||
@ -27,14 +27,25 @@
|
||||
}
|
||||
|
||||
</style>
|
||||
</noscript><meta property="og:title" content="Posts" />
|
||||
<meta property="og:description" content="A site to share self hosted tutorials, troubleshooting, and tips/tricks." />
|
||||
</noscript>
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-X8VR5M0K20"></script>
|
||||
<script>
|
||||
var doNotTrack = false;
|
||||
if (!doNotTrack) {
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-X8VR5M0K20', { 'anonymize_ip': false });
|
||||
}
|
||||
</script>
|
||||
<meta property="og:title" content="Posts" />
|
||||
<meta property="og:description" content="A mostly technical blog & series of experiences working in tech and my homelab" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="/posts.html" /><meta property="og:site_name" content="RsmsnBlog" />
|
||||
<meta property="og:url" content="/posts.html" /><meta property="og:site_name" content="Norm-Hosted" />
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="Posts"/>
|
||||
<meta name="twitter:description" content="A site to share self hosted tutorials, troubleshooting, and tips/tricks."/>
|
||||
<meta name="twitter:description" content="A mostly technical blog & series of experiences working in tech and my homelab"/>
|
||||
|
||||
|
||||
<script type="application/ld+json">
|
||||
@ -64,7 +75,7 @@
|
||||
<header class="header">
|
||||
<nav class="nav">
|
||||
<div class="logo">
|
||||
<a href="./" accesskey="h" title="Rsmsn Blog (Alt + H)">Rsmsn Blog</a>
|
||||
<a href="./" accesskey="h" title="Norm-Hosted 💾 (Alt + H)">Norm-Hosted 💾</a>
|
||||
<div class="logo-switches">
|
||||
<button id="theme-toggle" accesskey="t" title="(Alt + T)">
|
||||
<svg id="moon" xmlns="http://www.w3.org/2000/svg" width="24" height="18" viewBox="0 0 24 24"
|
||||
@ -100,33 +111,52 @@
|
||||
</header>
|
||||
|
||||
<article class="post-entry">
|
||||
<figure class="entry-cover"><img loading="lazy" src="./%3Cimage%20path/url%3E" alt="">
|
||||
</figure>
|
||||
<header class="entry-header">
|
||||
<h2>Pushing a Single Local Git Repo to Multiple Remote Repos
|
||||
</h2>
|
||||
</header>
|
||||
<div class="entry-content">
|
||||
<p>Why push to multiple repos? Do want to use both Github & and a Self-hosted Git Repo? Here’s how I’ve been doing it!
|
||||
I really enjoy self-hosting services that I use everyday. One of those includes a git-style version control software. In my case, I’ve been running Gitea for a few years now and have been really satisfied with everything (except for that one time that an update broke all my templates)....</p>
|
||||
</div>
|
||||
<footer class="entry-footer"><span title='2023-09-22 15:07:10 -0400 EDT'>September 22, 2023</span> · 2 min · 403 words · Me</footer>
|
||||
<a class="entry-link" aria-label="post link to Pushing a Single Local Git Repo to Multiple Remote Repos" href="./posts/multiple_git_remotes.html"></a>
|
||||
</article>
|
||||
|
||||
<article class="post-entry">
|
||||
<figure class="entry-cover"><img loading="lazy" src="./%3Cimage%20path/url%3E" alt="">
|
||||
</figure>
|
||||
<header class="entry-header">
|
||||
<h2>Trouble Hosting Hugo with Nginx
|
||||
</h2>
|
||||
</header>
|
||||
<div class="entry-content">
|
||||
<p>For the last 3 days, I have been spending a few hours after working trying to figure out why my brand new Hugo site was not loading correctly on my sub-domain. For context, I use Nginx to host all my apps and servers, most of them using reverse proxy protocols such as $proxy_host, $forward_scheme, and $port. There are a few more and I’m happy to share some reverse proxy nginx config files....</p>
|
||||
<p>Intro For the last 3 days, I have been spending a few hours after working trying to figure out why my brand new Hugo site was not loading correctly on my sub-domain. For context, I use Nginx to host all my apps and servers, most of them using reverse proxy protocols such as $proxy_host, $forward_scheme, and $port. There are a few more and I’m happy to share some reverse proxy nginx config files....</p>
|
||||
</div>
|
||||
<footer class="entry-footer"><span title='2023-09-20 11:33:22 -0400 EDT'>September 20, 2023</span> · Norm Rasmussen</footer>
|
||||
<footer class="entry-footer"><span title='2023-09-20 11:33:22 -0400 EDT'>September 20, 2023</span> · 5 min · 888 words · Me</footer>
|
||||
<a class="entry-link" aria-label="post link to Trouble Hosting Hugo with Nginx" href="./posts/hosting_hugo_troubles.html"></a>
|
||||
</article>
|
||||
|
||||
<article class="post-entry">
|
||||
<figure class="entry-cover"><img loading="lazy" src="./%3Cimage%20path/url%3E" alt="">
|
||||
</figure>
|
||||
<header class="entry-header">
|
||||
<h2>Tutorial: Move from NginxProxyManager to Nginx
|
||||
</h2>
|
||||
</header>
|
||||
<div class="entry-content">
|
||||
<p>A Tutorial Repo for migrating your Nginx Proxy Manager proxy setup to Nginx. I wrote this originally for this reddit post and to post this my Github profile. Thought my website would also be a good place to share it for any passers-by.
|
||||
Goal To give clear instructions to help users migrate from using Nginx Proxy Manager (NPM) to standard Nginx. This tutorial is not exhaustive and there are many other implementations of this transition....</p>
|
||||
<p>Goal A Tutorial Repo for migrating your Nginx Proxy Manager proxy setup to Nginx. I wrote this originally for this reddit post and to post this my Github profile. Thought my website would also be a good place to share it for any passers-by.
|
||||
To give clear instructions to help users migrate from using Nginx Proxy Manager (NPM) to standard Nginx. This tutorial is not exhaustive and there are many other implementations of this transition....</p>
|
||||
</div>
|
||||
<footer class="entry-footer"><span title='2023-08-05 15:23:51 -0500 -0500'>August 5, 2023</span> · Norm Rasmussen</footer>
|
||||
<footer class="entry-footer"><span title='2023-08-05 15:23:51 -0500 -0500'>August 5, 2023</span> · 8 min · 1635 words · Me</footer>
|
||||
<a class="entry-link" aria-label="post link to Tutorial: Move from NginxProxyManager to Nginx" href="./posts/npm_to_nginx_tutorial.html"></a>
|
||||
</article>
|
||||
</main>
|
||||
|
||||
<footer class="footer">
|
||||
<span>© 2023 <a href="./">Rsmsn Blog</a></span>
|
||||
<span>© 2023 <a href="./">Norm-Hosted 💾</a></span>
|
||||
<span>
|
||||
Powered by
|
||||
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &
|
||||
|
||||
Reference in New Issue
Block a user