Month: August 2019
FreeRadius 3.0.x Installation and configuration with Mysql
This document describes how to setup a FreeRADIUS server. A MySQL server is used as backend and for the user accounting. RADIUS is an industry-standard protocol for providing authentication, authorization, and accounting services. Authentication is the process of verifying a user’s identity and associating additional information (attributes) to the user’s…
Multiple SSL HAProxy
Multiple SSL HaProxy ini diperlukan Jika dalam 1 Server Haproxy terdapat 2 SSL yang berbeda, Misalnya domain www.example.com dan www.contoh.com. Berikut Konfigurasi haproxy.conf jika multiple SSL. frontend secure-http-in bind *:80 bind *:443 ssl crt /usr/local/etc/ssl/riaunew.pem crt /usr/local/etc/ssl/dumai.pem redirect scheme https if !{ ssl_fc } # <- Jika semua domain redirect…
How to install composer for PHP
This article describes how to install and configure composer, a PHP dependency manager. Composer enables you to manage dependencies for each project independently, and is used by frameworks such as Laravel. INSTALLING COMPOSER To install composer, follow these steps: Log in to your account using SSH.To configure your shell environment to use composer,…