I don't know about you but in these times of working from home and social distancing I get way more annoyed when internet speeds are not reaching the levels required for a decent video conference. I have three routers in my home all of which are running FreshTomato firmware. In my setup two of those routers actually don't do much more than serve as a access point for the WiFi. The real magic is done on my main router (Netgear Nighthawk R7000). Here I take care of all DHCP requests, static lease…
All posts in Internet
This detailed guide will show you how to reliably access your Home Assistant instance remotely without having a fixed/static IP and NAT as options.
Basic setup curl -L https://ghost.org/zip/ghost-latest.zip -o ghost.zip unzip -uo ghost.zip -d ghost cd ghost && npm install --production Running on production Install PM2 server sudo npm install pm2 -g Configure the app In your ghost folder create a config.json file with the following content: { "apps": [ { "name": "ghost", "script": "npm", "args": "start --production" } ] } Start the server pm2 start config.json…