Chris Moore
play
When the Flickr API Stopped Working

…concerns were finally put to rest after coming to my senses and taking a quick look through the API documentation over at https://www.flickr.com/services/api/ . As it turns out, the API…


Install the latest version of Nginx on Ubuntu

In most cases, when you instal NGINX from the default repositories found in common Linux distributions like Ubuntu, the version that installs is way out of date. This presents a…


Rewrite the WordPress uploads url path in Nginx

…server_name example.com root /var/www/example.com; index index.php index.html index.htm; rewrite ^/wp-content/(.*)$ /app/$1 permanent; location / { try_files $uri $uri/ /index.php?$args; } location ~ \.php$ { include snippets/fastcgi-php.conf; fastcgi_pass unix:/run/php/php7.3-fpm.sock; } }…