Apache

Useful htaccess Configuration

.htaccess files are used as configuration files for sites running on an Apache web server. If running a PHP application, some useful htaccess configuration code snippets can be seen below.
To set PHP values, you can use php_value followed by the directive and the value. For example, PHP 5 values can be added within the …

Install an SSL Certificate on Linux

To install an SSL certificate on linux-like servers without using a control panel, SSH into your web server and run an openssl command to generate a CSR (Certificate Signing Request). The CSRidentifies which server will use your certificate, as well as the domain names (common names) you’ll use for the certificates.
The command will generate …