a27e6768fb
It allows you to edit the white- and blacklists as well as the current state of the greylist. WWW: http://www.vanheusden.com/sgwi/ PR: ports/121630 Submitted by: Lukasz Wasikowski <lukasz at wasikowski.net> Approved by: tabthorpe (mentor)
24 lines
607 B
Text
24 lines
607 B
Text
|
|
1. Configure sgwi
|
|
-----------------
|
|
Edit the %%PREFIX%%/www/sgwi/config.inc.php file to reflect your
|
|
setup.
|
|
|
|
The default password for sgwi is admin/admin. It's specified in
|
|
the .htpasswd file in %%PREFIX%%/www/sgwi/ directory. Change it
|
|
with:
|
|
|
|
htpasswd %%PREFIX%%/www/sgwi/.htpasswd admin
|
|
|
|
Also make sure that the location of the .htpasswd file specified
|
|
in .htaccess file matches your path.
|
|
|
|
2. Configure Apache
|
|
-------------------
|
|
Add a line in your httpd.conf to allow the use of .htaccess file.
|
|
|
|
<Directory "%%PREFIX%%/www/sgwi">
|
|
Options Indexes
|
|
AllowOverride AuthConfig
|
|
</Directory>
|
|
|