freebsd-ports/sysutils/ganglia-webfrontend/files/pkg-message.in
2019-08-14 12:16:12 +00:00

43 lines
1.1 KiB
Text

[
{ type: install
message: <<EOM
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 .
EOM
}
]