<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" encoding="UTF-8" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/" xmlns:atom="http://www.w3.org/2005/Atom/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:googleplay="http://www.google.com/schemas/play-podcasts/1.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:fireside="http://fireside.fm/modules/rss/fireside">
  <channel>
    <fireside:hostname>web01.fireside.fm</fireside:hostname>
    <fireside:genDate>Sun, 12 Apr 2026 21:31:07 -0500</fireside:genDate>
    <generator>Fireside (https://fireside.fm)</generator>
    <title>TechSNAP - Episodes Tagged with “Static Sites”</title>
    <link>https://techsnap.systems/tags/static%20sites</link>
    <pubDate>Sat, 25 May 2019 18:00:00 -0700</pubDate>
    <description>Systems, Network, and Administration Podcast. Every two weeks TechSNAP covers the stories that impact those of us in the tech industry, and all of us that follow it. Every episode we dedicate a portion of the show to answer audience questions, discuss best practices, and solving your problems.
</description>
    <language>en-us</language>
    <itunes:type>episodic</itunes:type>
    <itunes:subtitle>Systems, Network, and Administration Podcast. </itunes:subtitle>
    <itunes:author>Jupiter Broadcasting</itunes:author>
    <itunes:summary>Systems, Network, and Administration Podcast. Every two weeks TechSNAP covers the stories that impact those of us in the tech industry, and all of us that follow it. Every episode we dedicate a portion of the show to answer audience questions, discuss best practices, and solving your problems.
</itunes:summary>
    <itunes:image href="https://media24.fireside.fm/file/fireside-images-2024/podcasts/images/9/95197d05-40d6-4e68-8e0b-2f586ce8dc55/cover.jpg?v=4"/>
    <itunes:explicit>no</itunes:explicit>
    <itunes:owner>
      <itunes:name>Jupiter Broadcasting</itunes:name>
      <itunes:email>chris@jupiterbroadcasting.com</itunes:email>
    </itunes:owner>
<itunes:category text="News">
  <itunes:category text="Tech News"/>
</itunes:category>
<item>
  <title>404: Prefork Pitfalls</title>
  <link>https://techsnap.systems/404</link>
  <guid isPermaLink="false">e2a5afa9-3180-4551-91a0-e84e65eb61e1</guid>
  <pubDate>Sat, 25 May 2019 18:00:00 -0700</pubDate>
  <author>Jupiter Broadcasting</author>
  <enclosure url="https://aphid.fireside.fm/d/1437767933/95197d05-40d6-4e68-8e0b-2f586ce8dc55/e2a5afa9-3180-4551-91a0-e84e65eb61e1.mp3" length="24351787" type="audio/mp3"/>
  <itunes:episodeType>full</itunes:episodeType>
  <itunes:author>Jupiter Broadcasting</itunes:author>
  <itunes:subtitle>We turn our eye to web server best practices, from the basics of CDNs to the importance of choosing the right multi-processing module.</itunes:subtitle>
  <itunes:duration>33:49</itunes:duration>
  <itunes:explicit>no</itunes:explicit>
  <itunes:image href="https://media24.fireside.fm/file/fireside-images-2024/podcasts/images/9/95197d05-40d6-4e68-8e0b-2f586ce8dc55/cover.jpg?v=4"/>
  <description>We turn our eye to web server best practices, from the basics of CDNs to the importance of choosing the right multi-processing module.
Plus the right way to setup PHP, the trouble with benchmarking, and when to choose NGiNX.  
</description>
  <itunes:keywords>HTTP, web servers, nginx, apache, lighttpd, prefork, mod_php, php, concurrency, threadpool, threads, scalability, event loop, apache mpms, Multi-Processing Modules, varnish, CDN, static sites, wordpress, apache bench, benchmarking, w3 total cache, performance, networking, sysadmin, web hosting, DevOps, TechSNAP</itunes:keywords>
  <content:encoded>
    <![CDATA[<p>We turn our eye to web server best practices, from the basics of CDNs to the importance of choosing the right multi-processing module.</p>

<p>Plus the right way to setup PHP, the trouble with benchmarking, and when to choose NGiNX. </p><p>Links:</p><ul><li><a title="Jim&#39;s Blog: Installing WordPress on Apache the modern way" rel="nofollow" href="https://jrs-s.net/2019/05/25/installing-wordpress-on-apache-the-modern-way/">Jim's Blog: Installing WordPress on Apache the modern way</a> &mdash; It’s been bugging me for a while that there are no correct guides to be found about using modern Apache 2.4 or above with the Event or Worker MPMs. We’re going to go ahead and correct that lapse today, by walking through a brand-new WordPress install on a new Ubuntu 18.04 VM.
</li><li><a title="Apache Performance Tuning" rel="nofollow" href="https://httpd.apache.org/docs/2.4/misc/perf-tuning.html">Apache Performance Tuning</a> &mdash; Apache 2.x is a general-purpose webserver, designed to provide a balance of flexibility, portability, and performance. Although it has not been designed specifically to set benchmark records, Apache 2.x is capable of high performance in many real-world situations.</li><li><a title="Tuning Your Apache Server" rel="nofollow" href="https://www.linode.com/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/">Tuning Your Apache Server</a></li><li><a title="worker - Apache HTTP Server Version 2.4" rel="nofollow" href="https://httpd.apache.org/docs/2.4/mod/worker.html">worker - Apache HTTP Server Version 2.4</a> &mdash; This Multi-Processing Module (MPM) implements a hybrid multi-process multi-threaded server. By using threads to serve requests, it is able to serve a large number of requests with fewer system resources than a process-based server.</li><li><a title="event - Apache HTTP Server Version 2.4" rel="nofollow" href="https://httpd.apache.org/docs/2.4/mod/event.html">event - Apache HTTP Server Version 2.4</a> &mdash; The event Multi-Processing Module (MPM) is designed to allow more requests to be served simultaneously by passing off some processing work to the listeners threads, freeing up the worker threads to serve new requests.

</li><li><a title="PHP-FPM" rel="nofollow" href="https://php-fpm.org/">PHP-FPM</a> &mdash; PHP-FPM (FastCGI Process Manager) is an alternative PHP FastCGI implementation with some additional features useful for sites of any size, especially busier sites.
</li><li><a title="FastCGI overview" rel="nofollow" href="https://help.dreamhost.com/hc/en-us/articles/217298967-FastCGI-overview">FastCGI overview</a> &mdash; FastCGI is a way to have CGI scripts execute time-consuming code (like opening a database) only once, rather than every time the script is loaded. In technical terms, FastCGI is a language independent, scalable, open extension to CGI that provides high performance without the limitations of server specific APIs.

</li><li><a title="Alexa Top 500 Global Sites" rel="nofollow" href="https://www.alexa.com/topsites">Alexa Top 500 Global Sites</a></li><li><a title="What Is a CDN? How Does a CDN work?" rel="nofollow" href="https://www.cloudflare.com/learning/cdn/what-is-a-cdn/">What Is a CDN? How Does a CDN work?</a> &mdash; A content delivery network (CDN) refers to a geographically distributed group of servers which work together to provide fast delivery of Internet content. </li><li><a title="W3 Total Cache – WordPress plugin" rel="nofollow" href="https://wordpress.org/plugins/w3-total-cache/">W3 Total Cache – WordPress plugin</a> &mdash; W3 Total Cache improves the SEO and user experience of your site by increasing website performance, reducing load times via features like content delivery network (CDN) integration and the latest best practices.

</li><li><a title="krakjoe/apcu: APCu - APC User Cache" rel="nofollow" href="https://github.com/krakjoe/apcu">krakjoe/apcu: APCu - APC User Cache</a> &mdash; APCu is an in-memory key-value store for PHP. Keys are of type string and values can be any PHP variables.

</li><li><a title="PHP: APCu - Manual" rel="nofollow" href="https://www.php.net/manual/en/book.apcu.php">PHP: APCu - Manual</a></li><li><a title="Introduction to Varnish — Varnish HTTP Cache" rel="nofollow" href="https://varnish-cache.org/intro/">Introduction to Varnish — Varnish HTTP Cache</a> &mdash; Varnish Cache is a web application accelerator also known as a caching HTTP reverse proxy. You install it in front of any server that speaks HTTP and configure it to cache the contents. Varnish Cache is really, really fast. It typically speeds up delivery with a factor of 300 - 1000x, depending on your architectur</li><li><a title="ab - Apache HTTP server benchmarking tool" rel="nofollow" href="https://httpd.apache.org/docs/2.4/programs/ab.html">ab - Apache HTTP server benchmarking tool</a> &mdash; ab is a tool for benchmarking your Apache Hypertext Transfer Protocol (HTTP) server. It is designed to give you an impression of how your current Apache installation performs. This especially shows you how many requests per second your Apache installation is capable of serving.</li><li><a title="HTTP(S) Benchmark Tools " rel="nofollow" href="https://gist.github.com/denji/8333630">HTTP(S) Benchmark Tools </a></li><li><a title="jimsalterjrs/network-testing" rel="nofollow" href="https://github.com/jimsalterjrs/network-testing">jimsalterjrs/network-testing</a> &mdash; This is a small collection of GPLv3-licensed tools to assist an intrepid researcher in testing the performance of networks, wired or wireless.</li></ul>]]>
  </content:encoded>
  <itunes:summary>
    <![CDATA[<p>We turn our eye to web server best practices, from the basics of CDNs to the importance of choosing the right multi-processing module.</p>

<p>Plus the right way to setup PHP, the trouble with benchmarking, and when to choose NGiNX. </p><p>Links:</p><ul><li><a title="Jim&#39;s Blog: Installing WordPress on Apache the modern way" rel="nofollow" href="https://jrs-s.net/2019/05/25/installing-wordpress-on-apache-the-modern-way/">Jim's Blog: Installing WordPress on Apache the modern way</a> &mdash; It’s been bugging me for a while that there are no correct guides to be found about using modern Apache 2.4 or above with the Event or Worker MPMs. We’re going to go ahead and correct that lapse today, by walking through a brand-new WordPress install on a new Ubuntu 18.04 VM.
</li><li><a title="Apache Performance Tuning" rel="nofollow" href="https://httpd.apache.org/docs/2.4/misc/perf-tuning.html">Apache Performance Tuning</a> &mdash; Apache 2.x is a general-purpose webserver, designed to provide a balance of flexibility, portability, and performance. Although it has not been designed specifically to set benchmark records, Apache 2.x is capable of high performance in many real-world situations.</li><li><a title="Tuning Your Apache Server" rel="nofollow" href="https://www.linode.com/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/">Tuning Your Apache Server</a></li><li><a title="worker - Apache HTTP Server Version 2.4" rel="nofollow" href="https://httpd.apache.org/docs/2.4/mod/worker.html">worker - Apache HTTP Server Version 2.4</a> &mdash; This Multi-Processing Module (MPM) implements a hybrid multi-process multi-threaded server. By using threads to serve requests, it is able to serve a large number of requests with fewer system resources than a process-based server.</li><li><a title="event - Apache HTTP Server Version 2.4" rel="nofollow" href="https://httpd.apache.org/docs/2.4/mod/event.html">event - Apache HTTP Server Version 2.4</a> &mdash; The event Multi-Processing Module (MPM) is designed to allow more requests to be served simultaneously by passing off some processing work to the listeners threads, freeing up the worker threads to serve new requests.

</li><li><a title="PHP-FPM" rel="nofollow" href="https://php-fpm.org/">PHP-FPM</a> &mdash; PHP-FPM (FastCGI Process Manager) is an alternative PHP FastCGI implementation with some additional features useful for sites of any size, especially busier sites.
</li><li><a title="FastCGI overview" rel="nofollow" href="https://help.dreamhost.com/hc/en-us/articles/217298967-FastCGI-overview">FastCGI overview</a> &mdash; FastCGI is a way to have CGI scripts execute time-consuming code (like opening a database) only once, rather than every time the script is loaded. In technical terms, FastCGI is a language independent, scalable, open extension to CGI that provides high performance without the limitations of server specific APIs.

</li><li><a title="Alexa Top 500 Global Sites" rel="nofollow" href="https://www.alexa.com/topsites">Alexa Top 500 Global Sites</a></li><li><a title="What Is a CDN? How Does a CDN work?" rel="nofollow" href="https://www.cloudflare.com/learning/cdn/what-is-a-cdn/">What Is a CDN? How Does a CDN work?</a> &mdash; A content delivery network (CDN) refers to a geographically distributed group of servers which work together to provide fast delivery of Internet content. </li><li><a title="W3 Total Cache – WordPress plugin" rel="nofollow" href="https://wordpress.org/plugins/w3-total-cache/">W3 Total Cache – WordPress plugin</a> &mdash; W3 Total Cache improves the SEO and user experience of your site by increasing website performance, reducing load times via features like content delivery network (CDN) integration and the latest best practices.

</li><li><a title="krakjoe/apcu: APCu - APC User Cache" rel="nofollow" href="https://github.com/krakjoe/apcu">krakjoe/apcu: APCu - APC User Cache</a> &mdash; APCu is an in-memory key-value store for PHP. Keys are of type string and values can be any PHP variables.

</li><li><a title="PHP: APCu - Manual" rel="nofollow" href="https://www.php.net/manual/en/book.apcu.php">PHP: APCu - Manual</a></li><li><a title="Introduction to Varnish — Varnish HTTP Cache" rel="nofollow" href="https://varnish-cache.org/intro/">Introduction to Varnish — Varnish HTTP Cache</a> &mdash; Varnish Cache is a web application accelerator also known as a caching HTTP reverse proxy. You install it in front of any server that speaks HTTP and configure it to cache the contents. Varnish Cache is really, really fast. It typically speeds up delivery with a factor of 300 - 1000x, depending on your architectur</li><li><a title="ab - Apache HTTP server benchmarking tool" rel="nofollow" href="https://httpd.apache.org/docs/2.4/programs/ab.html">ab - Apache HTTP server benchmarking tool</a> &mdash; ab is a tool for benchmarking your Apache Hypertext Transfer Protocol (HTTP) server. It is designed to give you an impression of how your current Apache installation performs. This especially shows you how many requests per second your Apache installation is capable of serving.</li><li><a title="HTTP(S) Benchmark Tools " rel="nofollow" href="https://gist.github.com/denji/8333630">HTTP(S) Benchmark Tools </a></li><li><a title="jimsalterjrs/network-testing" rel="nofollow" href="https://github.com/jimsalterjrs/network-testing">jimsalterjrs/network-testing</a> &mdash; This is a small collection of GPLv3-licensed tools to assist an intrepid researcher in testing the performance of networks, wired or wireless.</li></ul>]]>
  </itunes:summary>
</item>
  </channel>
</rss>
