freebsd-ports/www/piwik/files/pkg-message.in
Pawel Pekala 720ca3f8fe Update to version 2.9.1
PR:		195498
Submitted by:	maintainer
2014-12-13 20:33:06 +00:00

29 lines
897 B
Text

POST-INSTALL CONFIGURATION FOR Piwik
=====================================
1) Create a user and a empty database for Piwik to store all
its tables in (or choose an existing database).
2) Add the following to your Apache configuration, and
restart the server:
### Add the AcceptPathInfo directive only for Apache 2.0.30 or later.
Alias /piwik %%WWWDIR%%/
AcceptPathInfo On
<Directory %%WWWDIR%%>
AllowOverride None
Options Indexes FollowSymLinks
# Apache 2.4 no longer accepts "Order" or "Allow from ..."
Require all granted
</Directory>
3) Visit your Piwik site with a browser (i.e.,
http://your.server.com/piwik/), and you should
be taken to the setup script, which will lead
you through setting up Piwik.
For more information, see the INSTALL DOCUMENTATION:
http://piwik.org/docs/installation/
=====================================