Apache

Apache is a free Web server, that according to a Netcraft Web server survey, powers more than 60% of all Web sites on the Internet. Apache runs on most operating systems including Linux, Windows, Solaris, Digital UNIX, AmigaOS, etc.
www.httpd.apache.org

chrome h3nDAdjxo1 - Add custom Apache rules in cPanel

Add custom Apache rules in cPanel

You can customize Apache (2.4) virtual hosts with Include Files, by creating new include.conf file for that user or for all vhosts on your server. 💡 In the following code snippets make sure to replace: <user> with the cpanel...

wKf59EFJNH - The size of dynamic response body is over the limit, abort!

The size of dynamic response body is over the limit, abort!

When downloading large files in NextCloud from a LiteSpeed server the download fails after 500mb. The following error is recorded in error logs: The size of dynamic response body is over the limit, abort! This is set in LiteSpeed Admin Console under...

php nadlers compared pcx3 - PHP handlers Compared

PHP handlers Compared

In plain English: PHP handlers are Apache modules that interpret and run PHP code. Using right PHP handler on your website can have a huge impact on the overall performance. In cPanel you can have different PHP versions with different handlers for...

image 8 - Set default Timezone via htaccess in cPanel

Set default Timezone via htaccess in cPanel

Here in how to change the default Time Zone permanently in cPanel using the .htaccess file Step 1. First, check you current time yone settings using a simple .php script like this: <?php echo "Today is " . date("Y/m/d") . "<br>"; echo "The...

open ports php - PHP Script to check for open ports

PHP Script to check for open ports

Here is a simple PHP script that you can use to test if a port is open on the server or not. <?php $host = $_SERVER['SERVER_ADDR']; $ports = array(21, 25, 80, 81, 110, 443, 3306); foreach ($ports as $port) { $connection = @fsockopen($host...

modsecurity disable url - How to disable Mod_Sec for a specific folder/file

How to disable Mod_Sec for a specific folder/file

On a WordPress website that is protected with ModSecurity, when admin edits pages using Elementor or Gutenber in wp-admin dashboard, ModSecurity may falsely detect it as XSS attack. What we usually do is disable specific rules that create this false...

maxresdefault - ❌ Uninstall Apache Tomcat 10.0 Application Server

❌ Uninstall Apache Tomcat 10.0 Application Server

You can uninstall Apache Tomcat from either a Windows or Linux server with the following steps: Step 1: Stop the Tomcat service On Windows: On the machine where the product is installed, click Start > Control...

what is ssl - Configure 🔒 SSL on Apache Tomcat

Configure 🔒 SSL on Apache Tomcat

To set SSL on Tomcat, we need a digital certificate that can be created using Java keytool for the development environment. For the production environment, you should get a certificate from trusted providers such as Lets’ Encrypt...