Web-scripts in ISPmanager
From ISPWiki
Adding custom Web-scripts
(checked 11.30.09 on FreeBSD 6.3)
In ISPmanager you can easily install web-scripts you need, such as WordPress, phpbb, etc.
You can locate the scripts that are provided in ISPmanager in /usr/local/ispmgr/etc/webscripts.conf
You should specify the applications added by users in the file /usr/local/ispmgr/etc/webscripts.conf.local, otherwise they will be lost, because webscripts.conf changes after ISPmanager is updated.
webscripts.conf.local:
script "WordPress" {
Caption Blog
HomePage www.wordpress.org
URL http://wordpress.org/latest.tar.gz
CheckSum 3f1e1607e5ce1328c305e0192ff3352a
DefaultURI /wordpress
AdminURI /wp-admin/install.php
UsingDb yes
AskDbPass yes
PhpExtensions standard,mysql,pcre
}
- script - script name.
- Caption - script description field.
- HomePage - home page field.
- URL - boot address.
- CheckSum - file checksum (md5). You may calculate it using the md5 or md5sum utility.
- DefaultURI - default installation URL.
- AdminURI - address that a user is prompted to follow for installation.
- UsingDb - database is required (create a database)
- AskDbPass - installer will prompt for the password of a database user.
- PhpExtensions - installation script, PHP extensions are checked.
