forked from Lainports/freebsd-ports
Major changes to the port infrastructure:
- Replace WWWDOCROOT and WEBFRONTURL options with WEBFRONTDIR
(defaults to www/ganglia).
- Install files under ${PREFIX}/${WEBFRONTDIR}.
- Since the files are no longer installed in the document root,
add a pkg-message with a suggest addition to Apache's
httpd.conf.
- Use USE_PHP and WANT_PHP_MOD.
- Add a note about installing PHP with GD support at done in
mail/nocc.
- Remove conf.php only if it is identical to conf.php.sample as
done in mail/nocc.
- Sizify.
- Don't install the empty addons directory since packages won't
contain it.
PR: ports/62802
Submitted by: Brooks Davis <brooks@FreeBSD.org> (maintainer)
18 lines
614 B
Text
18 lines
614 B
Text
****************************************************************
|
|
The Ganglia Web Frontend has been installed in the directory
|
|
%%PREFIX%%/%%WEBFRONTDIR%%.
|
|
|
|
You must add appropriate configuration directives to your
|
|
apache configuration file (%%PREFIX%%/etc/apache/httpd.conf).
|
|
A typical configuration would be:
|
|
|
|
Alias /ganglia/ "%%PREFIX%%/%%WEBFRONTDIR%%/"
|
|
|
|
<Directory "%%PREFIX%%/%%WEBFRONTDIR%%">
|
|
Options Indexes FollowSymlinks MultiViews
|
|
AllowOverride None
|
|
Order allow,deny
|
|
Allow from all
|
|
</Directory>
|
|
|
|
****************************************************************
|