Disable Apache Error log in ISPConfig

ISPConfig is a free hosting control panel. It come with Nginx and Apache web servrs. You can select one during installation. if you are using Apache web server with ISPConfig and want to disable Apache Error logs, then do the following cd /etc/apache2/sites-available sed -i ‘s/ErrorLog .*/ErrorLog \/dev\/null/g’ * Now restart Apache systemctl restart apache2 … Read more

ASTPP

ASTPP is a Open Source VoIP Billing Solution for Freeswitch. It supports prepaid and postpaid billing with call rating and credit control. https://www.astppbilling.org To install ASTPP on CentOS 7, run wget –no-check-certificate https://raw.githubusercontent.com/iNextrix/ASTPP/v4.0.1/install.sh -O install.sh chmod +x install.sh ./install.sh Related Posts ASTPP change URL ASTPP install SSL voip

Caddy

Caddy is used to serving videos on https://odysee.com, it is a block-chain based video service with no censoring. Install Caddy Web Server Install Caddy Webserver on CentOS 7 How to Use Caddy as a Reverse Proxy Web Server

Install Caddy Web Server

Caddy is a light weight web server written in golang. Caddy auto generate SSL for your web site using LetsEncrypt and support HTTP/2. To instal Caddy, download latest Caddy release from github https://github.com/caddyserver/caddy/releases/ At the time of this post, 1.3 is latest stable release, to install it, run cd /usr/local/src wget https://github.com/caddyserver/caddy/releases/download/v2.4.6/caddy_2.4.6_linux_amd64.tar.gz tar xvf caddy_2.4.6_linux_amd64.tar.gz … Read more

curl set user agent

When using curl linux command line tool, to set user agent, run curl –user-agent “USER_AGENT_HERE” URL_HERE You can also use curl -A “USER_AGENT_HERE” URL_HERE By changing user agent, you can view a site as google bot, check Fetch as Google with curl Back to curl

phpMyAdmin allow connecting to multiple servers

phpMyAdmin configuration file is config.inc.php located in phpMyAdmin install folder. To enable connecting to arbitary Server, add $cfg[‘AllowArbitraryServer’] = true; This will allow you to enter server IP or hostname to connect to. To add connecting to differnt predefined servers, you can add following to end of config.inc.php $i++; $cfg[‘Servers’][$i][‘host’] = ‘database-1.abxfzy3gt.us-east-2.rds.amazonaws.com’; $cfg[‘Servers’][$i][‘port’] = ‘3306’; … Read more

iostat

iostat

iostat – Report Central Processing Unit (CPU) statistics and input/output statistics for devices and partitions. The iostat command is used for monitoring system input/output device loading by observing the time the devices are active in relation to their average transfer rates. The iostat command generates reports that can be used to change system configuration to … Read more

Install PHP 7.4 on CentOS 7

To install PHP 7.4 on CentOS 7, first install remi repository. yum install epel-release -y rpm -ivh https://rpms.remirepo.net/enterprise/remi-release-7.rpm Set PHP 7.4 as default PHP yum install yum-utils yum-config-manager –enable remi-php74 Install PHP with yum install -y php php-bcmath php-cli php-common php-devel php-gd \ php-imap php-intl php-json php-ldap php-lz4 php-mbstring php-mysqlnd \ php-soap php-intl php-opcache php-xml … Read more

Allow phpMyAdmin remote access on xampp

xampp server only allow access to phpMyAdmin from localhost. This is because root password is set to blank by default. If you need to access phpMyAdmin over internet, it will be good to add a password protection for phpmyadmin. Create a password file /opt/lampp/bin/htpasswd -c /opt/lampp/htpasswd-phpmyadmin admin Here “admin” is the user. You will be … Read more