]> git.mxchange.org Git - friendica.git/blob - util/vagrant_provision.sh
Merge pull request #4552 from tobiasd/20180305-messagespo
[friendica.git] / util / 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 PASSPHRASE="vaprobash"
17 SUBJ="
18 C=US
19 ST=Connecticut
20 O=Vaprobash
21 localityName=New Haven
22 commonName=$DOMAIN
23 organizationalUnitName=
24 emailAddress=
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/util/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-xenial.dev
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
45 sudo systemctl restart apache2
46
47
48 #Install mysql
49 echo ">>> Installing Mysql"
50 sudo debconf-set-selections <<< "mysql-server mysql-server/root_password password root"
51 sudo debconf-set-selections <<< "mysql-server mysql-server/root_password_again password root"
52 sudo apt-get install -qq mysql-server
53 # enable remote access
54 # setting the mysql bind-address to allow connections from everywhere
55 sed -i "s/bind-address.*/bind-address = 0.0.0.0/" /etc/mysql/my.cnf
56 # adding grant privileges to mysql root user from everywhere
57 # thx to http://stackoverflow.com/questions/7528967/how-to-grant-mysql-privileges-in-a-bash-script for this
58 MYSQL=`which mysql`
59 Q1="GRANT ALL ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION;"
60 Q2="FLUSH PRIVILEGES;"
61 SQL="${Q1}${Q2}"
62 $MYSQL -uroot -proot -e "$SQL"
63 # add a separate database user for friendica
64 $MYSQL -uroot -proot -e "CREATE USER 'friendica'@'localhost' identified by 'friendica';"
65 $MYSQL -uroot -proot -e "GRANT ALL PRIVILEGES ON friendica.* TO 'friendica'@'localhost';"
66 $MYSQL -uroot -proot -e "FLUSH PRIVILEGES"
67 systemctl restart mysql
68
69
70
71 #configure rudimentary mail server (local delivery only)
72 #add Friendica accounts for local user accounts, use email address like vagrant@friendica.dev, read the email with 'mail'.
73 debconf-set-selections <<< "postfix postfix/mailname string friendica-xenial.dev"
74 debconf-set-selections <<< "postfix postfix/main_mailer_type string 'Local Only'"
75 sudo apt-get install -y postfix mailutils libmailutils-dev
76 sudo echo -e "friendica1:       vagrant\nfriendica2:    vagrant\nfriendica3:    vagrant\nfriendica4:    vagrant\nfriendica5:    vagrant" >> /etc/aliases && sudo newaliases
77
78 #make the vagrant directory the docroot
79 sudo rm -rf /var/www/
80 sudo ln -fs /vagrant /var/www
81
82 # initial config file for friendica in vagrant
83 cp /vagrant/util/htconfig.vagrant.php /vagrant/.htconfig.php
84
85 # create the friendica database
86 echo "create database friendica DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci" | mysql -u root -proot
87 # import test database
88 $MYSQL -uroot -proot friendica < /vagrant/friendica_test_data.sql
89
90 # create cronjob - activate if you have enough memory in you dev VM
91 echo "*/10 * * * * cd /vagrant; /usr/bin/php scripts/worker.php" >> friendicacron
92 sudo crontab friendicacron
93 sudo rm friendicacron
94
95 # friendica needs write access to /tmp
96 sudo chmod 777 /tmp
97