Password protect directories / folders with nginx

Overview On an Apache server, it’s possible to password protect a directory using .htaccess and .htpasswd files. However, .htaccess files are not supported on Nginx. You can still password protect your directories, but you need to use a basic_auth.conf file instead. Creating the file Log into your server via SSH. Navigate to your user’s directory. … Read more

How to install PHP opcache

OPcache improves PHP performance by storing precompiled script bytecode in shared memory, thereby removing the need for PHP to load and parse scripts on each request. CMS frameworks such as WordPress, Joomla and Drupal, use a complex code and consume many processes. Several website speed enhancement plugins are available, heavily featured within the yield of … Read more

Howto disable or enable apache2 autostart on Ubuntu

Folder /etc/init.d/ contains all the init scripts for different boot up services like for example nginx, apache, mysql, etc. There is a program that makes those services simple to enable or disable from the start up. If you need to disable apache2 from start up, type: sudo update-rc.d apache2 disable To enable apache2 at start … Read more

How to upgrade to PHP 7.3 on Ubuntu

PHP 7.3 has a lot of performance advantages compared to 7.2 and co among other bug fixes. Since performance is one of my main reason why I wanted to upgrade to PHP 7.3 on my Ubuntu server I am going to share how you can upgrade to PHP 7.3 on Ubuntu. My machine run Ubuntu … Read more

osTicket – Solve problem with cron.php

Do you have troubles polling IMAP or POP via cron.php job? I have a solution. Here is a simple solution that will help you solve the problem with cron.php 1. go into /api/ and copy cron.php to some random filename like xfgjkdscron.php 2. now edit xfgjkdscron.php and comment lines: //if (!osTicket::is_cli()) //die(__(‘cron.php only supports local … Read more

Chrooted user for VSFTP and Webserver purpose

If you need to create a chrooted user for one of your webservers particular folder please read this article. 1. First we need to create a system user # useradd test # passwd test 2. Disable SSH access for FTP users The default user creation script will give a user the /bin/bash shell, which can … Read more

Restart network in Ubuntu from command line

If you’ve changed network configuration file /etc/network/interfaces for example you probably whish to apply changes. You can do it by two commands that I will write about in this article. Say for example that you’ve changed network configuration and need to apply these changes. Ofcourse you could restart your computer but it’s much easier to … Read more

ext3-fs: error loading journal

After a power surge, your linux server could be rendered un-bootable because of a corrupt file-system journal. If you are lucky and there are no physical errors, then the following could get your computer back to life. 1. Boot the linux box using live-cd (any bootable installer for server computers). 2. Choose “rescue a broken … Read more