]> git.mxchange.org Git - friendica.git/blob - bin/dev/vagrant_provision.sh
Move files from util to mods
[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 organizationalUnitName=
26 emailAddress=
27 "
28 sudo mkdir -p "$SSL_DIR"
29 sudo openssl genrsa -out "$SSL_DIR/xip.io.key" 4096
30 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
31 sudo openssl x509 -req -days 365 -in "$SSL_DIR/xip.io.csr" -signkey "$SSL_DIR/xip.io.key" -out "$SSL_DIR/xip.io.crt"
32
33
34 #Install apache2
35 echo ">>> Installing Apache2 webserver"
36 sudo apt-get install -y apache2
37 sudo a2enmod rewrite actions ssl
38 sudo cp /vagrant/bin/dev/vagrant_vhost.sh /usr/local/bin/vhost
39 sudo chmod guo+x /usr/local/bin/vhost
40     sudo vhost -s 192.168.22.10.xip.io -d /var/www -p /etc/ssl/xip.io -c xip.io -a friendica.local
41     sudo a2dissite 000-default
42     sudo service apache2 restart
43
44 #Install php
45 echo ">>> Installing PHP7"
46 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
47 sudo systemctl restart apache2
48
49 #Install mysql
50 echo ">>> Installing Mysql"
51 sudo debconf-set-selections <<< "mysql-server mysql-server/root_password password root"
52 sudo debconf-set-selections <<< "mysql-server mysql-server/root_password_again password root"
53 sudo apt-get install -qq mysql-server
54 # enable remote access
55 # setting the mysql bind-address to allow connections from everywhere
56 sed -i "s/bind-address.*/bind-address = 0.0.0.0/" /etc/mysql/my.cnf
57 # adding grant privileges to mysql root user from everywhere
58 # thx to http://stackoverflow.com/questions/7528967/how-to-grant-mysql-privileges-in-a-bash-script for this
59 MYSQL=`which mysql`
60 Q1="GRANT ALL ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION;"
61 Q2="FLUSH PRIVILEGES;"
62 SQL="${Q1}${Q2}"
63 $MYSQL -uroot -proot -e "$SQL"
64 # add a separate database user for friendica
65 $MYSQL -uroot -proot -e "CREATE USER 'friendica'@'localhost' identified by 'friendica';"
66 $MYSQL -uroot -proot -e "GRANT ALL PRIVILEGES ON friendica.* TO 'friendica'@'localhost';"
67 $MYSQL -uroot -proot -e "FLUSH PRIVILEGES"
68 systemctl restart mysql
69
70
71
72 #configure rudimentary mail server (local delivery only)
73 #add Friendica accounts for local user accounts, use email address like vagrant@friendica.local, read the email with 'mail'.
74 debconf-set-selections <<< "postfix postfix/mailname string friendica.local"
75 debconf-set-selections <<< "postfix postfix/main_mailer_type string 'Local Only'"
76 sudo apt-get install -y postfix mailutils libmailutils-dev
77 sudo echo -e "friendica1:       vagrant\nfriendica2:    vagrant\nfriendica3:    vagrant\nfriendica4:    vagrant\nfriendica5:    vagrant" >> /etc/aliases && sudo newaliases
78
79 #make the vagrant directory the docroot
80 sudo rm -rf /var/www/
81 sudo ln -fs /vagrant /var/www
82
83 # install deps with composer
84 sudo apt install unzip
85 cd /var/www
86 php bin/composer.phar install
87
88 # initial config file for friendica in vagrant
89 cp /vagrant/mods/local.config.vagrant.php /vagrant/config/local.config.php
90
91 # copy the .htaccess-dist file to .htaccess so that rewrite rules work
92 cp /vagrant/.htaccess-dist /vagrant/.htaccess
93
94 # create the friendica database
95 echo "create database friendica DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci" | $MYSQL -u root -proot
96 # import test database
97 $MYSQL -uroot -proot friendica < /vagrant/friendica_test_data.sql
98
99 # create cronjob - activate if you have enough memory in you dev VM
100 echo "*/10 * * * * cd /vagrant; /usr/bin/php bin/worker.php" >> friendicacron
101 sudo crontab friendicacron
102 sudo rm friendicacron
103
104 # friendica needs write access to /tmp
105 sudo chmod 777 /tmp