<?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>Архивы Audiobookshelf - Boxvirt - Proxmox &amp; OPNsense Infrastructure Guides</title>
	<atom:link href="https://boxvirt.com/tag/audiobookshelf/feed/" rel="self" type="application/rss+xml" />
	<link>https://boxvirt.com/tag/audiobookshelf/</link>
	<description>Practical self-hosted infrastructure guides for Proxmox, OPNsense, and Docker.</description>
	<lastBuildDate>Sat, 19 Jul 2025 22:20:40 +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>Архивы Audiobookshelf - Boxvirt - Proxmox &amp; OPNsense Infrastructure Guides</title>
	<link>https://boxvirt.com/tag/audiobookshelf/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Hosting Audiobookshelf on Your Own Server with Docker</title>
		<link>https://boxvirt.com/hosting-audiobookshelf-on-your-own-server-with-docker/</link>
					<comments>https://boxvirt.com/hosting-audiobookshelf-on-your-own-server-with-docker/#respond</comments>
		
		<dc:creator><![CDATA[eXtre]]></dc:creator>
		<pubDate>Fri, 18 Jul 2025 19:29:07 +0000</pubDate>
				<category><![CDATA[Docker]]></category>
		<category><![CDATA[Proxmox]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Audiobookshelf]]></category>
		<guid isPermaLink="false">https://boxvirt.com/?p=39</guid>

					<description><![CDATA[<p>Audiobookshelf is an open-source, self-hosted solution for organizing and streaming your audiobook collection. This guide shows how to install it on your server using Docker, configure your library, [&#8230;]</p>
<p>Сообщение <a href="https://boxvirt.com/hosting-audiobookshelf-on-your-own-server-with-docker/">Hosting Audiobookshelf on Your Own Server with Docker</a> появились сначала на <a href="https://boxvirt.com">Boxvirt - Proxmox &amp; OPNsense Infrastructure Guides</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p><strong>Audiobookshelf</strong> is an open-source, self-hosted solution for organizing and streaming your audiobook collection. This guide shows how to install it on your server using Docker, configure your library, and securely access it from anywhere.</p>



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



<ul class="wp-block-list">
<li>Stream audiobooks in your browser or mobile app</li>



<li>Tracks progress per user</li>



<li>Supports <code>.mp3</code>, <code>.m4b</code>, <code>.flac</code> and more</li>



<li>Beautiful, modern UI</li>



<li>Ideal alternative to Plex or paid audiobook apps</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/1f4e6.png" alt="📦" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Step 1: Prepare the Server</h3>



<p>You need a system with Docker and Docker Compose. For example, on Ubuntu:</p>



<pre class="wp-block-preformatted">bashКопироватьРедактировать<code>sudo apt update &amp;&amp; sudo apt install docker.io docker-compose -y
</code></pre>



<p>Create a directory for Audiobookshelf:</p>



<pre class="wp-block-preformatted">bashКопироватьРедактировать<code>mkdir -p ~/audiobookshelf/config ~/audiobookshelf/metadata ~/audiobookshelf/audiobooks
cd ~/audiobookshelf
</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/1f433.png" alt="🐳" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Step 2: Docker Compose File</h3>



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



<pre class="wp-block-preformatted">yamlКопироватьРедактировать<code>version: '3.8'
services:
  audiobookshelf:
    image: ghcr.io/advplyr/audiobookshelf
    container_name: audiobookshelf
    ports:
      - 13378:80
    volumes:
      - ./audiobooks:/audiobooks
      - ./metadata:/metadata
      - ./config:/config
    restart: unless-stopped
</code></pre>



<p>Then start it:</p>



<pre class="wp-block-preformatted">bashКопироватьРедактировать<code>docker-compose up -d
</code></pre>



<p>Audiobookshelf will be available at <code>http://your-ip:13378</code></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/1f4c1.png" alt="📁" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Step 3: Add Audiobooks</h3>



<p>Move your <code>.mp3</code> or <code>.m4b</code> audiobooks to <code>~/audiobookshelf/audiobooks</code>. Then go to the web interface → &#171;Libraries&#187; → &#171;Add Library&#187; and select the folder.</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/1f510.png" alt="🔐" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Step 4: Secure Access</h3>



<p>Use a reverse proxy (e.g., Nginx or Traefik) to enable HTTPS. Example Nginx block:</p>



<pre class="wp-block-preformatted">nginxКопироватьРедактировать<code>server {
  listen 443 ssl;
  server_name audiobooks.yourdomain.com;

  location / {
    proxy_pass http://localhost:13378;
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
  }

  ssl_certificate /etc/letsencrypt/live/yourdomain.com/fullchain.pem;
  ssl_certificate_key /etc/letsencrypt/live/yourdomain.com/privkey.pem;
}
</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/1f4f1.png" alt="📱" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Bonus: Mobile Access</h3>



<ul class="wp-block-list">
<li>Use the <strong>Audiobookshelf app</strong> on Android or iOS</li>



<li>Point it to your domain (e.g., <code>https://audiobooks.yourdomain.com</code>)</li>



<li>Enjoy bookmarks, sync, progress tracking</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/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Conclusion</h3>



<p>Audiobookshelf is a lightweight and elegant solution for anyone who wants full control over their audiobook collection. With just a few Docker commands, you’ll have a personal audiobook streaming service that’s fast, private, and 100% yours.</p>
<p>Сообщение <a href="https://boxvirt.com/hosting-audiobookshelf-on-your-own-server-with-docker/">Hosting Audiobookshelf on Your Own Server with Docker</a> появились сначала на <a href="https://boxvirt.com">Boxvirt - Proxmox &amp; OPNsense Infrastructure Guides</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://boxvirt.com/hosting-audiobookshelf-on-your-own-server-with-docker/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
