]> git.mxchange.org Git - friendica.git/blob - bin/dev/vagrant_provision.sh
bc28cc384cf887515578103fb20aeb478cd2594f
[friendica.git] / bin / dev / vagrant_provision.sh
1 #!/bin/bash
2 #Script to setup the vagrant instance for running friendica
3 #
4 #DO NOT RUN on your physical machine as this won't be of any use
5 #and f.e. deletes your /var/www/ folder!
6 echo "Friendica configuration settings"
7 sudo apt-get update
8
9 # Install virtualbox guest additions
10 sudo apt-get install virtualbox-guest-x11
11
12 #Selfsigned cert
13 echo ">>> Installing *.xip.io self-signed SSL"
14 SSL_DIR="/etc/ssl/xip.io"
15 DOMAIN="*.xip.io"
16 EXTRADOMAIN="friendica.local"
17 PASSPHRASE="vaprobash"
18 SUBJ="
19 C=US/
20 ST=Connecticut/
21 O=Vaprobash/
22 localityName=New Haven/
23 commonName=$DOMAIN/
24 subjectAltName=DNS:$EXTRADOMAIN
25 "
26 sudo mkdir -p "$SSL_DIR"
27 sudo openssl genrsa -out "$SSL_DIR/xip.io.key" 4096
28 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
29 sudo openssl x509 -req -days 365 -in "$SSL_DIR/xip.io.csr" -signkey "$SSL_DIR/xip.io.key" -out "$SSL_DIR/xip.io.crt"
30
31
32 #Install apache2
33 echo ">>> Installing Apache2 webserver"
34 sudo apt-get install -y apache2
35 sudo a2enmod rewrite actions ssl
36 sudo cp /vagrant/bin/dev/vagrant_vhost.sh /usr/local/bin/vhost
37 sudo chmod guo+x /usr/local/bin/vhost
38 sudo vhost -s 192.168.22.10.xip.io -d /var/www -p /etc/ssl/xip.io -c xip.io -a friendica.local
39 sudo a2dissite 000-default
40 sudo service apache2 restart
41
42 #Install php
43 echo ">>> Installing PHP7"
44 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
45 sudo systemctl restart apache2
46
47 #Install mysql
48 echo ">>> Installing Mysql"
49 sudo debconf-set-selections <<< "mariadb-server mariadb-server/root_password password root"
50 sudo debconf-set-selections <<< "mariadb-server mariadb-server/root_password_again password root"
51 sudo apt-get install -qq mariadb-server
52 # enable remote access
53 # setting the mysql bind-address to allow connections from everywhere
54 sed -i "s/bind-address.*/bind-address = 0.0.0.0/" /etc/mysql/my.cnf
55 # adding grant privileges to mysql root user from everywhere
56 # thx to http://stackoverflow.com/questions/7528967/how-to-grant-mysql-privileges-in-a-bash-script for this
57 MYSQL=`which mysql`
58 Q1="GRANT ALL ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION;"
59 Q2="FLUSH PRIVILEGES;"
60 SQL="${Q1}${Q2}"
61 $MYSQL -uroot -proot -e "$SQL"
62 # add a separate database user for friendica
63 $MYSQL -uroot -proot -e "CREATE USER 'friendica'@'localhost' identified by 'friendica';"
64 $MYSQL -uroot -proot -e "GRANT ALL PRIVILEGES ON friendica.* TO 'friendica'@'localhost';"
65 $MYSQL -uroot -proot -e "FLUSH PRIVILEGES"
66 systemctl restart mysql
67
68
69
70 #configure rudimentary mail server (local delivery only)
71 #add Friendica accounts for local user accounts, use email address like vagrant@friendica.local, read the email with 'mail'.
72 debconf-set-selections <<< "postfix postfix/mailname string friendica.local"
73 debconf-set-selections <<< "postfix postfix/main_mailer_type string 'Local Only'"
74 sudo apt-get install -y postfix mailutils libmailutils-dev
75 sudo echo -e "friendica1:       vagrant\nfriendica2:    vagrant\nfriendica3:    vagrant\nfriendica4:    vagrant\nfriendica5:    vagrant" >> /etc/aliases && sudo newaliases
76
77 # Friendica needs git for fetching some dependencies
78 sudo apt-get install -y git
79
80 #make the vagrant directory the docroot
81 sudo rm -rf /var/www/
82 sudo ln -fs /vagrant /var/www
83
84 # install deps with composer
85 sudo apt install unzip
86 cd /var/www
87 sudo -u www-data php bin/composer.phar install
88
89 # initial config file for friendica in vagrant
90 cp /vagrant/mods/local.config.vagrant.php /vagrant/config/local.config.php
91
92 # copy the .htaccess-dist file to .htaccess so that rewrite rules work
93 cp /vagrant/.htaccess-dist /vagrant/.htaccess
94
95 # create the friendica database
96 echo "create database friendica DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci" | $MYSQL -u root -proot
97 # import test database
98 $MYSQL -uroot -proot friendica < /vagrant/friendica_test_data.sql
99
100 # create cronjob - activate if you have enough memory in you dev VM
101 echo "*/10 * * * * cd /vagrant; /usr/bin/php bin/worker.php" >> friendicacron
102 sudo crontab friendicacron
103 sudo rm friendicacron
104
105 # friendica needs write access to /tmp
106 sudo chmod 777 /tmp