Category: Technology

  • Replacing FiOS Quantum Router with Ubiquiti

    Verizon’s ONT was serving over coax as the house was wired with coax. Now that we use YouTube TV rather than traditional cable, we don’t need coax for anything, so rewired the house with cat5e to all floors. This change made it easier to get rid of the rental ($10 per month) Quantum router, since…

  • Fixing Ubuntu 18.04 and moving to PHP-FPM

    Moved vhost farm to Ubuntu 18.04 on Linode and hit some snags after deciding to move to php-fpm instead of mod-php. Adding this to apache.conf instead of to each vhost config seems to work fine: <FilesMatch “\.php$”>SetHandler “proxy:unix:/var/run/php/php7.2-fpm.sock|fcgi://localhost/” </FilesMatch> Add <If “-f %{SCRIPT_FILENAME}”></If> around the FilesMatch line to keep non php from being sent to unix…