Tag: Echo

30 April 2020

Upgrading to PHP 7.3.18 (cli) from 7.0

This will download and install updates for Debian and upgrade PHP from version 7.0 to 7.3 sudo apt update sudo apt upgrade -y sudo apt install ca-certificates apt-transport-https echo “deb https://packages.sury.org/php/ $(lsb_release -sc) main” | sudo tee /etc/apt/sources.list.d/php7.3.list wget -q https://packages.sury.org/php/apt.gpg -O- | sudo apt-key […]

26 May 2020

Upgrading to PHP 7.4.6 (cli) from 7.3.18

Using the site’s Health page under tools, make note of the Versions of PHP on the info tab. Using SSH Using “php -v” allows you to check the current version For general updates use: sudo apt update sudo apt upgrade -y PHP Upgrade: php -v […]

13 December 2020

Hyper- V & Failover Clustering

Add the Hyper-V Role to a Node Add Roles & Features Select Role Based Select Server to Install the Role / Feature on to (can be a remote system) Select Hyper-V Select the Network for VM Traffic Ignore Clustering for this step Set Paths Confirm […]

24 November 2020

Amazon Sidewalk is now rolling out to Echo, Ring devices

You’re able to disable Amazon Sidewalk on these devices should you really wish – in your Alexa app tap More > Settings > Account Settings > Amazon Sidewalk.  The full list of current Sidewalk devices is as follows: Ring Floodlight Cam (2019), Ring Spotlight Cam […]

30 April 2020

Hosting Multiple Domains with Vhost

In SSH: cd /etc/apache2/sites-available/ sudo cp 000-default.conf newdomain.com.conf sudo nano newdomain.com.conf Update accordingly <VirtualHost *:80 *:443> ServerName newdomian.com ServerAlias www.newdomain.com ServerAdmin admin@newdomain.com  DocumentRoot /var/www/newdomain.com/html Use CTRL+X, Y, ENTER when done cd /var/www/ sudo mkdir newdomain.com cd newdomain.com sudo mkdir html sudo echo “<html><head><title>Hello</title></head><body><h1>Test Page for newdomain</h1></body></html>” […]