mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
e87a8bd319
Approved by: portmgr blanket
35 lines
925 B
Plaintext
35 lines
925 B
Plaintext
|
|
POST-INSTALL CONFIGURATION FOR Claroline
|
|
=====================================
|
|
|
|
1) Add the following to your Apache configuration, and
|
|
restart the server:
|
|
|
|
For Apache version 2.4.x or above:
|
|
Alias /claroline %%WWWDIR%%/
|
|
AcceptPathInfo On
|
|
<Directory %%WWWDIR%%>
|
|
Options Indexes
|
|
AllowOverride None
|
|
Require all granted
|
|
</Directory>
|
|
|
|
For Apache versions earlier than 2.4:
|
|
Alias /claroline %%WWWDIR%%/
|
|
AcceptPathInfo On
|
|
<Directory %%WWWDIR%%>
|
|
AllowOverride None
|
|
Order Allow,Deny
|
|
Allow from all
|
|
</Directory>
|
|
|
|
2) Visit your Claroline site with a browser (i.e.,
|
|
http://your.server.com/claroline/claroline/install/)
|
|
and you should be taken to the install script,
|
|
which will lead you through setting up Claroline,
|
|
creating an admin account, etc.
|
|
|
|
For more information, see the INSTALL DOCUMENTATION:
|
|
|
|
http://www.claroline.net/doc/en/index.php/Main_Page
|