<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Архивы Linkwarden - Boxvirt - Proxmox &amp; OPNsense Infrastructure Guides</title>
	<atom:link href="https://boxvirt.com/tag/linkwarden/feed/" rel="self" type="application/rss+xml" />
	<link>https://boxvirt.com/tag/linkwarden/</link>
	<description>Practical self-hosted infrastructure guides for Proxmox, OPNsense, and Docker.</description>
	<lastBuildDate>Sat, 19 Jul 2025 22:17:07 +0000</lastBuildDate>
	<language>ru-RU</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://boxvirt.com/wp-content/uploads/2025/07/cropped-ChatGPT-Image-12-июл.-2025-г.-19_41_55-32x32.png</url>
	<title>Архивы Linkwarden - Boxvirt - Proxmox &amp; OPNsense Infrastructure Guides</title>
	<link>https://boxvirt.com/tag/linkwarden/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Self-Hosting Linkwarden: Secure Bookmarking on Your Own Server</title>
		<link>https://boxvirt.com/self-hosting-linkwarden-secure-bookmarking-on-your-own-server/</link>
					<comments>https://boxvirt.com/self-hosting-linkwarden-secure-bookmarking-on-your-own-server/#respond</comments>
		
		<dc:creator><![CDATA[eXtre]]></dc:creator>
		<pubDate>Fri, 18 Jul 2025 19:46:09 +0000</pubDate>
				<category><![CDATA[Docker]]></category>
		<category><![CDATA[Proxmox]]></category>
		<category><![CDATA[Traefik]]></category>
		<category><![CDATA[Linkwarden]]></category>
		<guid isPermaLink="false">https://boxvirt.com/?p=46</guid>

					<description><![CDATA[<p>Tired of losing important links or depending on third-party services like Pocket or Raindrop? Linkwarden is a privacy-friendly, self-hosted alternative that lets you store, organize, and search bookmarks [&#8230;]</p>
<p>Сообщение <a href="https://boxvirt.com/self-hosting-linkwarden-secure-bookmarking-on-your-own-server/">Self-Hosting Linkwarden: Secure Bookmarking on Your Own Server</a> появились сначала на <a href="https://boxvirt.com">Boxvirt - Proxmox &amp; OPNsense Infrastructure Guides</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Tired of losing important links or depending on third-party services like Pocket or Raindrop? <strong>Linkwarden</strong> is a privacy-friendly, self-hosted alternative that lets you store, organize, and search bookmarks — all on your own terms.</p>



<p>This guide walks you through deploying Linkwarden with Docker and Traefik, configuring it for SSL, and accessing it from anywhere securely.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/1f9f0.png" alt="🧰" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Why Use Linkwarden?</h3>



<ul class="wp-block-list">
<li><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/1f4c1.png" alt="📁" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Save links with titles, tags, notes, and screenshots</li>



<li><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/1f510.png" alt="🔐" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Self-hosted = complete data privacy</li>



<li><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/1f310.png" alt="🌐" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Access anywhere with SSL</li>



<li><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/1f9ed.png" alt="🧭" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Fast full-text search</li>



<li><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/1f465.png" alt="👥" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Multi-user support</li>



<li><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/1f4f7.png" alt="📷" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Automatic page archiving (via browser extension)</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/1f433.png" alt="🐳" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Deployment with Docker Compose</h3>



<p>Create a directory:</p>



<pre class="wp-block-preformatted"><code>mkdir -p ~/linkwarden &amp;&amp; cd ~/linkwarden<br></code></pre>



<p>Then create a <code>docker-compose.yml</code> file:</p>



<pre class="wp-block-preformatted"><code>version: '3.9'<br>services:<br>  linkwarden:<br>    image: ghcr.io/linkwarden/linkwarden:latest<br>    container_name: linkwarden<br>    restart: unless-stopped<br>    environment:<br>      - DATABASE_URL=postgres://user:pass@db:5432/linkwarden<br>    depends_on:<br>      - db<br>    ports:<br>      - 3000:3000<br>    volumes:<br>      - ./data:/data<br><br>  db:<br>    image: postgres:15<br>    environment:<br>      - POSTGRES_DB=linkwarden<br>      - POSTGRES_USER=user<br>      - POSTGRES_PASSWORD=pass<br>    volumes:<br>      - ./pgdata:/var/lib/postgresql/data<br></code></pre>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/1f6e0.png" alt="🛠" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Setup &amp; Access</h3>



<ol class="wp-block-list">
<li>Start containers:</li>
</ol>



<pre class="wp-block-preformatted"><code>docker compose up -d<br></code></pre>



<ol start="2" class="wp-block-list">
<li>Access via <code>http://your-server-ip:3000</code></li>



<li>Register an account</li>



<li>(Optional) Install the <a class="" href="https://github.com/linkwarden/linkwarden">Linkwarden Chrome/Firefox extension</a></li>
</ol>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/1f512.png" alt="🔒" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Securing with HTTPS via Traefik</h3>



<p>If you&#8217;re already using Traefik (e.g., for other Docker apps), add a label block to your service:</p>



<pre class="wp-block-preformatted"><code>labels:<br>  - "traefik.enable=true"<br>  - "traefik.http.routers.linkwarden.rule=Host(`links.yourdomain.com`)"<br>  - "traefik.http.routers.linkwarden.entrypoints=websecure"<br>  - "traefik.http.routers.linkwarden.tls.certresolver=myresolver"<br></code></pre>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/1f4f2.png" alt="📲" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Use Cases</h3>



<ul class="wp-block-list">
<li>Personal bookmarking vault</li>



<li>Team research archive</li>



<li>Curated collection of articles, videos, and PDFs</li>



<li>Save content offline for future reference</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2699.png" alt="⚙" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Tips &amp; Extras</h3>



<ul class="wp-block-list">
<li>Use <code>Plausible</code> or <code>Umami</code> to self-host stats</li>



<li>Integrate with Nginx Proxy Manager</li>



<li>Enable auto backups with <code>borg</code> or <code>restic</code></li>



<li>Add Redis for performance boost</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/1f4a1.png" alt="💡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Conclusion</h3>



<p>Linkwarden is a powerful, minimalist bookmark manager that respects your privacy and puts you in control. It’s fast, Docker-friendly, and actively maintained by the open-source community. If you’re serious about decluttering your digital brain — host your own Linkwarden server and keep your internet organized for good.</p>
<p>Сообщение <a href="https://boxvirt.com/self-hosting-linkwarden-secure-bookmarking-on-your-own-server/">Self-Hosting Linkwarden: Secure Bookmarking on Your Own Server</a> появились сначала на <a href="https://boxvirt.com">Boxvirt - Proxmox &amp; OPNsense Infrastructure Guides</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://boxvirt.com/self-hosting-linkwarden-secure-bookmarking-on-your-own-server/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
