Apache Increase FD limit
On CentOS 7 sevrer running apache, when try to install plugin in WordPress admin area, i get error Installazione fallita:
gunicorn behind Apache web server
gunicorn is a python application server used to run python applications in production. This is normally run behind web servers
Apache Invalid command AuthGroupFile
On Plesk server, i get following error on error_log for a site [Tue Apr 23 08:50:32.336220 2019] [core:alert] [pid 30457:tid
Apache Limit access to a url
I want to limit access to admin login url of a web application to specified IP address. The web site
Ubuntu Apache Setup for WordPress
On a Fresh Ubuntu 18.04 server, run following commands to setup Apache, PHP and MySQL needed for WordPress installation. You
Cpanel ReverseProxy Traffic to Docker Container
On a cpanel server, i need to run a web application using docker container. Application running side docker container listening
Disable PHP on a folder
A web site had vlunerability, all allowed hacker to upload backdoor script to “uploads” folder used by the script. As
Apache Benchmark
ab is a tool for benchmarking web servers. It is designed to give you an impression of how your web
Limit Access Using htaccess
To limit access to a folder using .htaccess, create .htacess file with following content. order deny,allow deny from all allow
Show X-Forwarded-For IP in Apache
When apache is running behind the proxy server it shows the IP of the proxy server as visitor IP. To
Apache Disable PHP for a web site
To disable PHP for a web site edit VirtualHost entry of the web site and add php_flag engine off Restart
Run .html files as PHP in Apache
On Ubuntu, to execute .htm files as PHP, create file vi /etc/apache2/conf-enabled/php-html.conf Add following content SetHandler application/x-httpd-php This is similar