<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>PBiernat.space</title>
		<link>https://pbiernat.space/projects/</link>
		<description>Recent content on PBiernat.space</description>
		<generator>Hugo</generator>
		<language>en-us</language>
		
		
		
			<copyright>&lt;a href=&#34;https://creativecommons.org/licenses/by-nc/4.0/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;CC BY-NC 4.0&lt;/a&gt;</copyright>
		
		
			<lastBuildDate>Sun, 14 Jun 2026 00:00:00 +0000</lastBuildDate>
		
			<atom:link href="https://pbiernat.space/projects/index.xml" rel="self" type="application/rss+xml" />
			<item>
				<title>Traefik custom plugins loading</title>
				<link>https://pbiernat.space/projects/traefik-custom-plugins/</link>
				<pubDate>Sun, 14 Jun 2026 00:00:00 +0000</pubDate>
				<guid>https://pbiernat.space/projects/traefik-custom-plugins/</guid>
				<description>&lt;h2 id=&#34;overview&#34;&gt;Overview&lt;/h2&gt;&#xA;&lt;p&gt;A fork of the Traefik reverse proxy with custom plugins functionality.&lt;/p&gt;&#xA;&lt;h2 id=&#34;features&#34;&gt;Features&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Loading custom plugin, below is a example config for custom plugins loading in the &lt;code&gt;traefik.yaml&lt;/code&gt; file&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;configuration&#34;&gt;Configuration&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;experimental:&#xA;  customPlugins:&#xA;    egommerce-auth:&#xA;      moduleName: egommerce-auth&#xA;      moduleUrl: gitea:https://git.pbiernat.space/traefik/plugin-egommerce-auth&#xA;      version: v1.0.0&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;links&#34;&gt;Links&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://git.pbiernat.space/traefik/traefik&#34;&gt;Git Repository&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;</description>
			</item>
			<item>
				<title>Traefik JWT auth plugin</title>
				<link>https://pbiernat.space/projects/traefik-auth-plugin/</link>
				<pubDate>Mon, 08 Jun 2026 00:00:00 +0000</pubDate>
				<guid>https://pbiernat.space/projects/traefik-auth-plugin/</guid>
				<description>&lt;h2 id=&#34;overview&#34;&gt;Overview&lt;/h2&gt;&#xA;&lt;p&gt;Custom JWT Auth traefik plugin.&lt;/p&gt;&#xA;&lt;h2 id=&#34;features&#34;&gt;Features&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Configure remote JWT Auth endpoint with GuardURL param&lt;/li&gt;&#xA;&lt;li&gt;Enable debug mode with Debug param&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;how-it-works&#34;&gt;How It Works&lt;/h2&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Intercepts incoming HTTP requests&lt;/li&gt;&#xA;&lt;li&gt;Extracts the &lt;code&gt;Authorization&lt;/code&gt; header containing a Bearer token&lt;/li&gt;&#xA;&lt;li&gt;Sends validation request to the configured Guard service with:&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Token URL and service data&lt;/li&gt;&#xA;&lt;li&gt;&lt;code&gt;Host: identity&lt;/code&gt; header&lt;/li&gt;&#xA;&lt;li&gt;&lt;code&gt;Content-Type: application/json&lt;/code&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;Grants access on &lt;code&gt;200 OK&lt;/code&gt; response from Guard service&lt;/li&gt;&#xA;&lt;li&gt;Returns &lt;code&gt;403 Forbidden&lt;/code&gt; for missing tokens or failed validation&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;h2 id=&#34;configuration&#34;&gt;Configuration&lt;/h2&gt;&#xA;&lt;table&gt;&#xA;&#x9;&lt;thead&gt;&#xA;&#x9;&#x9;&#x9;&lt;tr&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;th&gt;Option&lt;/th&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;th&gt;Type&lt;/th&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;th&gt;Required&lt;/th&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;th&gt;Description&lt;/th&gt;&#xA;&#x9;&#x9;&#x9;&lt;/tr&gt;&#xA;&#x9;&lt;/thead&gt;&#xA;&#x9;&lt;tbody&gt;&#xA;&#x9;&#x9;&#x9;&lt;tr&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;td&gt;&lt;code&gt;GuardURL&lt;/code&gt;&lt;/td&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;td&gt;&lt;code&gt;string&lt;/code&gt;&lt;/td&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;td&gt;Yes&lt;/td&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;td&gt;URL of the identity access checker service&lt;/td&gt;&#xA;&#x9;&#x9;&#x9;&lt;/tr&gt;&#xA;&#x9;&#x9;&#x9;&lt;tr&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;td&gt;&lt;code&gt;Debug&lt;/code&gt;&lt;/td&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;td&gt;&lt;code&gt;bool&lt;/code&gt;&lt;/td&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;td&gt;No&lt;/td&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;td&gt;Enable debug logging for troubleshooting&lt;/td&gt;&#xA;&#x9;&#x9;&#x9;&lt;/tr&gt;&#xA;&#x9;&lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;h2 id=&#34;links&#34;&gt;Links&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://git.pbiernat.space/traefik/plugin-egommerce-auth&#34;&gt;Git Repository&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;</description>
			</item>
			<item>
				<title>Zomboid server panel</title>
				<link>https://pbiernat.space/projects/zomboid-server-panel/</link>
				<pubDate>Sat, 25 Nov 2023 00:00:00 +0000</pubDate>
				<guid>https://pbiernat.space/projects/zomboid-server-panel/</guid>
				<description>&lt;h2 id=&#34;overview&#34;&gt;Overview&lt;/h2&gt;&#xA;&lt;p&gt;Playing the game Zomboid on my own server, I needed a simple panel to manage it. This is how a simple yet functional server management panel was created.&lt;/p&gt;&#xA;&lt;h2 id=&#34;features&#34;&gt;Features&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Displaying server stats - uptime, number of players etc&lt;/li&gt;&#xA;&lt;li&gt;Sending RCON commands to the server&lt;/li&gt;&#xA;&lt;li&gt;Restarting server on demand&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;links&#34;&gt;Links&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://git.pbiernat.space/zomboid/webapp&#34;&gt;Git Repository&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;</description>
			</item>
	</channel>
</rss>
