How to enable Apache SSL module in Ubuntu
To enable the Apache SSL module in Ubuntu, follow these steps Update apt package cache apt update Install Apache SSL module apt…
To enable the Apache SSL module in Ubuntu, follow these steps Update apt package cache apt update Install Apache SSL module apt…
Enable HSTS Header set Strict-Transport-Security “max-age=31536000; includeSubDomains; preload” Enable X-Frame-Options Header always append X-Frame-Options SAMEORIGIN Enable X-XSS-Protection Header set X-XSS-Protection “1; mode=block”…
I wanted to block bots from accessing a website. For this, I need to generate a list of all browser User-Agent visiting…
On an Apache server, when accessing a long URL, got 414 Request-URI Too Long The error is because the URL is too…
You may need to deny access to specific files on your web server for security reasons. On the Apache web server, you…
To install the latest version of Apache Web Server from source code, go to the apache website, download the latest source code…
On a CentOS server, when uploading a 100 MB video file in WordPress media manager, I got the following error message Request…
On an Apache webserver running in Ubuntu, I added a VirtualHost entry for a domain name. But instead of showing the page,…
mpm-itk allow you to run Apache VirtualHost under a specific user/group instead of under the Apache user/group. On Debian/Ubuntu Apache web server…
To only allow requests from a specific IP to a location, use Require ip 59.92.71.53 51.38.246.115 Require ip 59.92.71.53 51.38.246.115 Add custom…
To proxy requests in Apache For proxying HTTPS traffic, use If remote SSL is invalid, you can disable SSL verification You need…
We have a site where we host demo websites that we do for our customers. We don’t want search engines to index…