Day: April 21, 2020

Cloud case server
services

How to Install HAProxy on a Raspberry

HAProxy is available on the Raspbian platform! HAProxy is a high availability, load balancing, and proxying server application. It sits between the Internet and your webservers. HAProxy sends the traffic to each of your servers, round-robin style. Since I’m serving this website on a couple of Raspberries, I thought HAProxy would be a welcome solution […]

Read More
services

Tiny webserver for testing

Here’s a handy little script. Save the following as webserver.js. This will set up your Raspberry as a bonafide web server that you can use for testing proxy services or your monitoring scripts. // Load the http module to create an http server. var http = require(‘http’); // Configure our HTTP server to respond with […]

Read More
hardware raspbian

How to Connect a Raspberry Pi to WiFi

Built-in WiFi on a computer is a feature and a security hazard. Being conscious of it and taking control of it are two good steps on the way to better Raspberry Pi operations. In this article, we’ll take a look at two different methods of controlling the WiFi feature on a Raspberry Pi. Method One: […]

Read More