summaryrefslogtreecommitdiff
path: root/sysutils/ganglia-webfrontend/files/pkg-message.in
blob: ba1b586774d5c5590a1d0ddd39f36a43feef57ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
****************************************************************

The Ganglia Web Frontend has been installed in the directory
%%WWWDIR%%.

You must add appropriate configuration directives to your
web server configuration file.

Example apache22 configuration:

    Alias /ganglia "%%WWWDIR%%/"
    <Directory "%%WWWDIR%%">
        Options Indexes FollowSymlinks MultiViews
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>

Example apache24 configuration:

    Alias /ganglia "%%WWWDIR%%/"
    <Directory "%%WWWDIR%%">
        Options Indexes FollowSymlinks MultiViews
        AllowOverride None
	Require all granted
    </Directory>

Nginx configuration:

    If you are running Nginx and your document root is set to
    %%PREFIX%%/www,
    then you just need to ensure PHP files are handled correctly.
    If you are using a different document root, then you will need to create
    the appropriate location directive.

The default configuration is stored in
%%WWWDIR%%/conf_default.php.
If you want to customize the configuration make customizations to
%%WWWDIR%%/conf.php .

****************************************************************