c1a1f1ce26
Line 20-27 -> add slash at the end of every entry and removed empty entries. Caused error in creating .csr file PS. the virtualbox-guest-x11 is not in the given debian repository. Better take an Ubuntu repository Also inserted: sudo apt-get install -y ubuntu-desktop sudo systemctl set-default graphical.target to install a desktop environment
107 lines
4.1 KiB
Bash
Executable file
107 lines
4.1 KiB
Bash
Executable file
#!/bin/bash
|
|
#Script to setup the vagrant instance for running friendica
|
|
#
|
|
#DO NOT RUN on your physical machine as this won't be of any use
|
|
#and f.e. deletes your /var/www/ folder!
|
|
echo "Friendica configuration settings"
|
|
sudo apt-get update
|
|
|
|
# Install virtualbox guest additions
|
|
sudo apt-get install virtualbox-guest-x11
|
|
|
|
#Selfsigned cert
|
|
echo ">>> Installing *.xip.io self-signed SSL"
|
|
SSL_DIR="/etc/ssl/xip.io"
|
|
DOMAIN="*.xip.io"
|
|
EXTRADOMAIN="friendica.local"
|
|
PASSPHRASE="vaprobash"
|
|
SUBJ="
|
|
C=US/
|
|
ST=Connecticut/
|
|
O=Vaprobash/
|
|
localityName=New Haven/
|
|
commonName=$DOMAIN/
|
|
subjectAltName=DNS:$EXTRADOMAIN
|
|
"
|
|
sudo mkdir -p "$SSL_DIR"
|
|
sudo openssl genrsa -out "$SSL_DIR/xip.io.key" 4096
|
|
sudo openssl req -new -subj "$(echo -n "$SUBJ" | tr "\n" "/")" -key "$SSL_DIR/xip.io.key" -out "$SSL_DIR/xip.io.csr" -passin pass:$PASSPHRASE
|
|
sudo openssl x509 -req -days 365 -in "$SSL_DIR/xip.io.csr" -signkey "$SSL_DIR/xip.io.key" -out "$SSL_DIR/xip.io.crt"
|
|
|
|
|
|
#Install apache2
|
|
echo ">>> Installing Apache2 webserver"
|
|
sudo apt-get install -y apache2
|
|
sudo a2enmod rewrite actions ssl
|
|
sudo cp /vagrant/bin/dev/vagrant_vhost.sh /usr/local/bin/vhost
|
|
sudo chmod guo+x /usr/local/bin/vhost
|
|
sudo vhost -s 192.168.22.10.xip.io -d /var/www -p /etc/ssl/xip.io -c xip.io -a friendica.local
|
|
sudo a2dissite 000-default
|
|
sudo service apache2 restart
|
|
|
|
#Install php
|
|
echo ">>> Installing PHP7"
|
|
sudo apt-get install -y php libapache2-mod-php php-cli php-mysql php-curl php-gd php-mbstring php-xml imagemagick php-imagick php-zip
|
|
sudo systemctl restart apache2
|
|
|
|
#Install mysql
|
|
echo ">>> Installing Mysql"
|
|
sudo debconf-set-selections <<< "mariadb-server mariadb-server/root_password password root"
|
|
sudo debconf-set-selections <<< "mariadb-server mariadb-server/root_password_again password root"
|
|
sudo apt-get install -qq mariadb-server
|
|
# enable remote access
|
|
# setting the mysql bind-address to allow connections from everywhere
|
|
sed -i "s/bind-address.*/bind-address = 0.0.0.0/" /etc/mysql/my.cnf
|
|
# adding grant privileges to mysql root user from everywhere
|
|
# thx to http://stackoverflow.com/questions/7528967/how-to-grant-mysql-privileges-in-a-bash-script for this
|
|
MYSQL=`which mysql`
|
|
Q1="GRANT ALL ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION;"
|
|
Q2="FLUSH PRIVILEGES;"
|
|
SQL="${Q1}${Q2}"
|
|
$MYSQL -uroot -proot -e "$SQL"
|
|
# add a separate database user for friendica
|
|
$MYSQL -uroot -proot -e "CREATE USER 'friendica'@'localhost' identified by 'friendica';"
|
|
$MYSQL -uroot -proot -e "GRANT ALL PRIVILEGES ON friendica.* TO 'friendica'@'localhost';"
|
|
$MYSQL -uroot -proot -e "FLUSH PRIVILEGES"
|
|
systemctl restart mysql
|
|
|
|
|
|
|
|
#configure rudimentary mail server (local delivery only)
|
|
#add Friendica accounts for local user accounts, use email address like vagrant@friendica.local, read the email with 'mail'.
|
|
debconf-set-selections <<< "postfix postfix/mailname string friendica.local"
|
|
debconf-set-selections <<< "postfix postfix/main_mailer_type string 'Local Only'"
|
|
sudo apt-get install -y postfix mailutils libmailutils-dev
|
|
sudo echo -e "friendica1: vagrant\nfriendica2: vagrant\nfriendica3: vagrant\nfriendica4: vagrant\nfriendica5: vagrant" >> /etc/aliases && sudo newaliases
|
|
|
|
# Friendica needs git for fetching some dependencies
|
|
sudo apt-get install -y git
|
|
|
|
#make the vagrant directory the docroot
|
|
sudo rm -rf /var/www/
|
|
sudo ln -fs /vagrant /var/www
|
|
|
|
# install deps with composer
|
|
sudo apt install unzip
|
|
cd /var/www
|
|
sudo -u www-data php bin/composer.phar install
|
|
|
|
# initial config file for friendica in vagrant
|
|
cp /vagrant/mods/local.config.vagrant.php /vagrant/config/local.config.php
|
|
|
|
# copy the .htaccess-dist file to .htaccess so that rewrite rules work
|
|
cp /vagrant/.htaccess-dist /vagrant/.htaccess
|
|
|
|
# create the friendica database
|
|
echo "create database friendica DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci" | $MYSQL -u root -proot
|
|
# import test database
|
|
$MYSQL -uroot -proot friendica < /vagrant/friendica_test_data.sql
|
|
|
|
# create cronjob - activate if you have enough memory in you dev VM
|
|
echo "*/10 * * * * cd /vagrant; /usr/bin/php bin/worker.php" >> friendicacron
|
|
sudo crontab friendicacron
|
|
sudo rm friendicacron
|
|
|
|
# friendica needs write access to /tmp
|
|
sudo chmod 777 /tmp
|