Pages tagged with apache

I'm still in the process of tagging pages that were migrated from the old site, so for now you're best off using the search engine rather than relying on the tags.

  • Apache - FCGID notes - You need mod_fcgid and suexec enabled. <VirtualHost *:80> ServerName drupal DocumentRoot /home/steph/webapps/drupal/ <Directory "/home/steph/webapps/drupal/"> Order allow,deny Allow from all AllowOverride Al...
  • FCGID notes - You need mod_fcgid and suexec enabled. <VirtualHost *:80> ServerName drupal DocumentRoot /home/steph/webapps/drupal/ <Directory "/home/steph/webapps/drupal/"> Order allow,deny Allow from all AllowOverride All Options ...
  • Apache basic authentication - In .htaccess: AuthType Basic AuthName "Restricted Files" AuthUserFile /the/location/of/.htpasswd (or /the/location/of/whatever/pass/file) Require user the_username In vhost: <VirtualHost *:80> ServerName www.example.com ServerAdmin webma...
  • SuExec notes - Enable suexec module to allow users to run CGI scripts etc as themselves. In debian lenny… a2enmod suexec /etc/init.d/apache2 reload apt-get install apache2-suexec Virtual hosts and the docroot setting suexec is normally compiled with its docroot...
  • Apache htaccess notes - Notes about Apache’s htaccess aka HyperText Access files. Prevent Apache listing directory contents To hide a directory from listing via a browser add an .htaccess inside the directory that contains the following: IndexIgnore * The * is a wildcar...
  • Apache MPM Prefork vs Worker - MPM prefork is a non-threaded pre-forking server. Is it thread safe. MPM worker is a multi-process multi-threaded server. It is not thread safe. Prefork is generally recommended for servers that will be serving PHP applications, as may libraries are ...

This website is a personal resource. Nothing here is guaranteed correct or complete, so use at your own risk and try not to delete the Internet. -Stephan

Site Info

Privacy policy

Go to top