Added the installation of curl to the .homeinstall script
Created by: anaqreon
After reporting issue https://github.com/redmatrix/hubzilla/issues/280, I modified the .homeinstall script to add the installation of curl. I successfully installed a new hub on a fresh virtual private server using the following steps:
- Created a new DigitalOcean droplet (Debian 8.3 x64 / 512 MB Memory / 20 GB Disk / NYC3)
- Assigned the hub domain name to the new droplet IP address using RackSpace DNS services
- Logged on to the new server and executed the following commands:
apt-get install git
mkdir -p /var/www/html
cd /var/www/html
git clone https://github.com/redmatrix/hubzilla.git .
nano .homeinstall/hubzilla-config.txt
cd .homeinstall/
./hubzilla-setup.sh
sed -i "s/^upload_max_filesize =.*/upload_max_filesize = 100M/g" /etc/php5/apache2/php.ini
sed -i "s/^post_max_size =.*/post_max_size = 100M/g" /etc/php5/apache2/php.ini
service apache2 reload
- Opened the hub webpage in a browser and completed the steps to finish installation