You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
831 B
37 lines
831 B
#!/bin/bash
|
|
|
|
set -eux
|
|
|
|
|
|
apt-get -y install apache2 libapache2-mod-php5 libtidy-0.99-0 build-essential
|
|
apt-get -y install php5-dev php5-ldap php5-xsl php-pear
|
|
## Couldn't find this one:
|
|
#php-mcrypt
|
|
apt-get -y install libapache2-mod-python libmysqlclient-dev python-dev
|
|
apt-get -y install php5-mysql
|
|
apt-get -y install python-docutils ## for rst2html
|
|
|
|
|
|
#apt-get install squirrelmail
|
|
apt-get install phpmyadmin
|
|
|
|
ln -s /etc/phpmyadmin/apache.conf /etc/apache2/conf.d/phpmyadmin
|
|
#ln -sf /usr/share/phpmyadmin /var/www/s-lmc.kalysto.org/phpmyadmin
|
|
|
|
|
|
pecl install tidy
|
|
echo "extension=tidy.so" > /etc/php5/apache2/conf.d/tidy.ini
|
|
|
|
pecl install xdebug
|
|
echo "extension=xdebug.so" >> /etc/php5/apache2/conf.d/xdebug.ini
|
|
|
|
|
|
#rdfapi-php ?
|
|
|
|
|
|
|
|
#a2enmod dav_fs ssl userdir rewrite suexec
|
|
a2enmod ssl rewrite
|
|
|
|
/etc/init.d/apache2 restart
|
|
|