How to allow includes, Basic Auth from outside .htaccess

This .htaccess file does the following: Allow SSI lines 1/2/3 Reauire Authenitcation for all outside except those from a particular IP the rest .. Options +Includes       AddType text/html .shtml .html AddOutputFilter INCLUDES .shtml .html AuthType Basic AuthName “Password Required For INGG Monitor” AuthUserFile /var/www/passwords/password.file Require valid-user Order deny,allow Deny from all Allow…

Enable SSI on Apache2 under Ubuntu

Tested on: – Ubuntu Linux 10.10 Maverick Meerkat (2010-11-21) – Ubuntu Linux 7.10 Gutsy Gibbon – Ubuntu Linux 6.06 Dapper Drake – Ubuntu Linux 5.10 Breezy Badger   1)  Optional: Install the Apache2 httpd server if not already installed. sudo apt-get install apache2 2) Create the following symlink. sudo ln -s /etc/apache2/mods-available/include.load /etc/apache2/mods-enabled 3) Open…