-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanleitung.txt
36 lines (31 loc) · 1.25 KB
/
anleitung.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Das Script benötigt PHP7 + MOD Rewrite
apt-get update
apt-get install apache2
echo 'deb http://packages.dotdeb.org jessie all' > /etc/apt/sources.list.d/dotdeb.list
apt-get install apt-transport-https
apt-get install curl
curl http://www.dotdeb.org/dotdeb.gpg | apt-key add -
apt-get update
apt-get install php7.0
dpkg -l | grep php
apt-get install php7.0-cli php7.0-curl php7.0-gd php7.0-geoip php7.0-intl php7.0-json php7.0-mbstring
apt-get install php7.0-mcrypt php7.0-mysql php7.0-opcache php7.0-readline php7.0-xml php7.0-xsl php7.0-zip
apt-get install libapache2-mod-php7.0
apt-get install php-bcmath
service apache2 restart
apt-get install mysql-server mysql-client
apt-get install phpmyadmin -y ## haken mit Leertaste bei apache2 ## yes ## 3x das passwort eingeben welches wir bei mysql-server mysql-client eingegeben haben
a2enmod rewrite
updatedb
locate mod_rewrite.so
cd /etc/apache2/mods-enabled
touch rewrite.load
/etc/apache2/sites-available/default die 000-default.conf öffnen und folgendes hinzufügen:
####
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
####
/etc/init.d/apache2 restart
Es muss ein Cronjob auf http://DeineIP/cronjob/bitcoin erstellt werden, damit der BTC Server mit der Datenbank kommunizieren kann!