| Page | Description | Tags |
|
basic auth
AuthName "description"
AuthType Basic
AuthUserFile /path/to/.htpasswd
<Limit GET>
require user foo
</Limit>
apache |
apache |
|
Install apache from source:
create apache user
adduser --disabled-login apache
This creates the user apache, group apache.
configure
./configure --prefi… |
apache |
|
Howto redirect links or rewrite addresses ...
mod_rewrite
Redirect everything to a “maintenance” message
RewriteEngine on
RewriteRule !wartung.htm$ htt… |
apache |
|
Some infos howto use apache the debian way:
* a2enmod - enables available mod
* a2dismod - disables mod
* a2ensite - enables site
* a2dissite - disab… |
debian,
apache |
|
I used this to give some additional information about our local Debian mirror.
create your .htaccess with the following contents:
ReadmeName README
HeaderNa… |
apache |
|
basic configure to create the php module:
./configure \
--prefix=/usr/local/php-5.x.x \
--with-mysql=/usr/local/mysql \
--with-apxs2=/usr/local/apache/current… |
apache,
php |