blob: fccdd2725731a356247a2371a48698bc57a0c817 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
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>
|