-
Notifications
You must be signed in to change notification settings - Fork 2
/
hah-engine.sh
1815 lines (1440 loc) · 54.1 KB
/
hah-engine.sh
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/bin/bash
# hah-engine.sh : install your own server at home
# Licence: GPLv3
# Author: © Xavier Cartron (XC) 2013 2014 2015, [email protected]
# http://yeuxdelibad.net/Programmation/Hostathome.html
VERSION="0.9"
# files
LOGFILE="$CURDIR/hah-$(date +%F-%H-%M).log"
RAPPORT="~/hah-$(date +%F-%H-%M).report"
TEMP="/tmp/hah"
#debian
if [ -d /usr/share/hostathome/stock ]; then
STOCK="/usr/share/hostathome/stock"
else
STOCK="$CURDIR/stock"
fi
verbose() {
set -x
"$@"
set +x
}
installapt() {
if [[ ! -e /etc/debian_version ]]; then
die "Il semblerait que vous n'utilisez pas une debian"
fi
verbose apt-get -y install "$@"
}
# Procédure de traitement des configs (merci MrFreez)
# Write error message on stderr and die
die() {
echo "$@" >&2
exit 1
}
# Write to stdout the process of template
process() {
[[ -f "${1}" ]] || die "load() : \"${1}\" don't exist !"
while read ; do
if [[ "${REPLY}" =~ \$\{.*\} ]] ; then
line=$(echo "${REPLY}" | sed 's@\([`"\\!]\)@\\\1@g')
line=$(echo "${line}" | sed 's@\($[^{]\)@\\\1@g')
lineout="$(eval "echo \"${line}\"")"
[[ ! -z "${lineout}" ]] && echo "${lineout}"
else
echo "${REPLY}"
fi
done < "${1}"
}
rapport() {
if [[ 0 -eq "$#" ]] ; then
cat | tee -a "$RAPPORT"
else
echo "$@" | tee -a "$RAPPORT"
fi
}
assign () {
read -rd '' "$1"
}
enableport() {
ufw allow $1
}
# Prepare installation
dopreparation() {
apt-get update
apt-get upgrade
apt-get dist-upgrade
}
createwwwdata() {
verbose groupadd www-data
verbose usermod -a -G www-data www-data
}
dosslcert() {
# dosslcert <Nom_de_domaine>
installapt openssl ssl-cert
# Nom de domaine
local NOMDHOTE="$1"
if [ -z "$NOMDHOTE" ]; then
die "Pas de nom d'hôte"
fi
openssl req -x509 -nodes -days 365 -newkey rsa:2048 \
-subj "/C=${SSLCOUNTRY}/ST=${SSLSTATE}/L=${SSLLOCATION}/O=${SSLORGANISATION}/CN=${SSLCOMMONNAME}/emailAddress=${SSLEMAILADDRESS}/" \
-keyout /etc/ssl/private/"$NOMDHOTE".pem \
-out /etc/ssl/private/"$NOMDHOTE".pem
chown root:root /etc/ssl/private/"$NOMDHOTE".pem
chmod 600 /etc/ssl/private/"$NOMDHOTE".pem
}
prepwebserver() {
# prepwebserver <php 0:oui, 1:non> </dossier/contenant/le/site> <nomdhote>
if [ $1 -eq 0 ]; then
cp -v "$STOCK/nginx-php.conf" /etc/nginx/conf.d/php
fi
if [ -n "$2" ]; then
createwwwdata
mkdir -p "/$2/"
fi
if [ -n "$3" ]; then
dosslcert "$3"
SSLCERT="
ssl_certificate /etc/ssl/private/$3.pem;
ssl_certificate_key /etc/ssl/private/$3.pem;"
enableport "443/tcp"
fi
enableport "80/tcp"
}
finwebserver() {
#finwebserver <php : 0 oui, 1 non> <dossier/contenant/le/site>
if [ -n "$2" ]; then
chown -R www-data:www-data "/$2"
fi
service nginx restart
if [ $1 -eq 0 ]; then
service php5-fpm restart
fi
}
phpuploadlimit() {
# Limite d'upload
sed -i "s/upload_max_filesize.*$/upload_max_filesize = 1500M/g" /etc/php5/fpm/php.ini
sed -i "s/post_max_size.*$/post_max_size = 1500M/g" /etc/php5/fpm/php.ini
}
preppgsql() {
# preppgsql <password>
local PW="$1"
su postgres -c psql << EOF
ALTER USER postgres WITH PASSWORD '$PW';
CREATE USER "www-data" WITH PASSWORD '$PW';
\q
EOF
/etc/init.d/postgresql restart
}
createdbpgsql() {
#createdbpgsql <nom de la base> <mot de passe>
su postgres -c psql << EOF
\connect template1
CREATE DATABASE "$1" WITH ENCODING 'UTF-8';
GRANT ALL PRIVILEGES ON DATABASE "$1" TO "www-data";
ALTER DATABASE "$1" OWNER TO "www-data";
\q
EOF
/etc/init.d/postgresql restart
}
# Function to install http server
dohttp_nginx() {
# dohttp_nginx <nom d'hote> </emplacement/du/site> <php 0 pour oui/1 pour non> <SSL (1:N, 2:O, 3:O avec redirection)>
echo "-> installation du serveur http"
installapt nginx
local INDEXPAGE="index.html"
local PORT="80"
local REWRITEHTTPS=""
local NOMDHOTE="$1"
local ROOTOFHTTP="$2"
local DOPHP="$3"
local SSL="$4"
# Nom de domaine
local domaineconf="/etc/nginx/conf.d/${NOMDHOTE}.conf"
cp -v "$STOCK/nginx-server.conf" "${domaineconf}"
# PHP
if [ $DOPHP -eq 0 ]; then
echo "-> On installe php"
installapt php5 php-apc php5-fpm
INDEXPAGE="index.html index.php"
cp -v "$STOCK/nginx-php.conf" /etc/nginx/conf.d/php
DOPHP="include /etc/nginx/conf.d/php;"
fi
# SSL
case $SSL in
"2") echo "https"
dosslcert "$NOMDHOTE"
PORT="443 ssl"
SSL="
ssl_certificate /etc/ssl/private/$NOMDHOTE.pem;
ssl_certificate_key /etc/ssl/private/$NOMDHOTE.pem;"
enableport "443/tcp"
;;
"3") echo "http -> https"
dosslcert "$NOMDHOTE"
PORT="443 ssl"
SSL="
ssl_certificate /etc/ssl/private/$NOMDHOTE.pem;
ssl_certificate_key /etc/ssl/private/$NOMDHOTE.pem;"
enableport "443/tcp"
enableport "80/tcp"
assign REWRITEHTTPS <<EOF
server {
listen 80;
server_name $NOMDHOTE;
rewrite ^ https://\$server_name\$request_uri? permanent;
}
EOF
;;
*) echo "http sans SSL"
SSL=""
enableport "80/tcp"
;;
esac
process "$STOCK/nginx-server.conf" > "$domaineconf"
service nginx restart
rapport <<EOF
nginx installé et configuré
* Pensez à ouvrir le(s) port(s) utilisé(s) (80 et 443 si ssl)
* Créez le dossier \"/$ROOTOFHTTP\" et placez-y les fichiers de votre site"
* Site : http://nginx.org
EOF
}
dopostfix() {
# dopostfix <nom d'hote> <domaine>
echo -e "installation du serveur de courriel"
local NOMDHOTE="$1"
local DOMAIN="$2"
rapport <<EOF
Un serveur de courriel a besoin de 2 champs DNS :
- Un champ de type A : mail.server.net . C'est le nom d'hôte vous permettant ensuite de récupérer vos mails.
- Un champ de type MX pointant vers le A précédent. C'est en général le nom de domaine porté dans les adresses : [email protected]
Ainsi, lorqu'on vous écrit à [email protected], c'est directement relié à l'hôte mail.server.net
EOF
installapt postfix dovecot-imapd postgrey libsasl2-2 sasl2-bin opendkim opendkim-tools
# SASL
sed -i "s/START=no/START=yes/" /etc/default/saslauthd
service saslauthd restart
# DOVECOT
cp -v "$STOCK/dovecot.conf" /etc/dovecot
service dovecot restart
# POSTFIX
# Edition de /etc/hosts
echo "127.0.0.1 $NOMDHOTE" >> /etc/hosts
echo "$NOMDHOTE" > /etc/mailname
#hostname $NOMDHOTE
process "$STOCK/postfix_main.cf" > "/etc/postfix/main.cf"
process "$STOCK/postfix_master.cf" > "/etc/postfix/master.cf"
service postfix restart
# DKIM
mkdir -p /etc/dkim
opendkim-genkey -D /etc/dkim -d "$DOMAIN" -s mail
chown opendkim:opendkim -R /etc/dkim
process "$STOCK/opendkim.conf" > /etc/opendkim.conf
echo 'SOCKET="inet:8891:localhost"' >> /etc/default/opendkim
# ports
enableport "25/tcp"
enableport "587/tcp"
enableport "143/tcp"
enableport "993/tcp"
rapport <<EOF
Configurez vos champs DNS :
Ajoutez un champ DKIM ou TXT contenant le contenu de /etc/dkim/mail.txt suivant:
---
mail._domainkey.$DOMAIN
$(</etc/dkim/mail.txt)
---
Ce contenu sera présent dans le fichier de logs et d'information $RAPPORT
EOF
service opendkim restart
rapport << EOF
---
Serveur de courriel installé et configuré.
Pensez à ouvrir les ports utilisés (25 ou 587,143,993)"
Pour lire votre courrier, installez un webmail,
ou bien avec un client de messagerie tel que thunderbird, claws-mail,
ou encore récupérez-le avec un programme tel que fdm ou fetchmail en utilisant
l'adresse de votre serveur $DOMAIN.
Pour ajouter une nouvelle adresse de courriel, créez un nouvel utilisateur.
Par exemple, pour avoir toto@$DOMAIN, créez l'utilisateur toto avec la commande
adduser toto
* Site de postfix : http://postfix.org
EOF
}
dosquirrelmail() {
# dosquirrelmail <nom d'hote>
local domaineconf="/etc/nginx/conf.d/squirrelmail.conf"
local NOMDHOTE="$1"
local SSLCERT=""
installapt squirrelmail squirrelmail-locales php5-fpm php5 php5-common squirrelmail-quicksave squirrelmail-spam-buttons squirrelmail-viewashtml nginx
cp -v "$STOCK/squirrelmail_config.php" /etc/squirrelmail/
prepwebserver 0 "/$ROOTOFHTTP" "$NOMDHOTE"
process "$STOCK/nginx-squirrelmail.conf" > "$domaineconf"
finwebserver 0
rapport << EOF
---
Le webmail squirrelmail est installé.
Pour ajouter un nouveau compte, lancez la commande :
adduser --shell=/bin/false nouvelUtilisateur
* Site : http://squirrelmail.org
EOF
}
dosftp() {
# dosftp <port> </repertoire/de/chroot> <utilisateur> <partage http (1 ou 0)>
installapt openssh-server
addgroup sftpusers
local PORT="$1"
local CHROOTDIR="$2"
local USER="$3"
local HTTPSHARE="$4"
# chroot
mkdir -p "$CHROOTDIR/home"
chown root:root "$CHROOTDIR"
# utilisateurs
mkdir -p /usr/local/bin
process "$STOCK/addsftpuser.sh" > /usr/local/bin/addsftpuser
chmod +x /usr/local/bin/addsftpuser
#Commenté car il faut indiquer le mot de passe -> pas automatique
#for U in $(echo "$USER"|sed "s; ;\n;g"); do
# /usr/local/bin/addsftpuser $U
#done
# Partage avec http
if [ "$HTTPSHARE" = "0" ]; then
mkdir -p /etc/nginx/conf.d/hostathome
process "$STOCK/nginx-sftp.conf" > /etc/nginx/conf.d/hostathome/sftp.conf
service nginx restart
fi
process "$STOCK/sshd_config" > "/etc/ssh/sshd_config"
enableport "$PORT/tcp"
service ssh restart
rapport << EOF
---
sftp installé et configuré
Pensez à ouvrir le port $PORT.
Vous pourrez désormais ajouter un nouvel utilisateur sftp avec la commande 'addsftpuser <utilisateur>'
EOF
}
dosecurite() {
installapt fail2ban portsentry rkhunter ufw
if [ -f /etc/ssh/sshd_config ]; then
SSHPORT="$(grep 'Port' /etc/ssh/sshd_config | cut -d' ' -f 2-)"
fi
ufw default deny
ufw allow $SSHPORT/tcp
ufw enable
#fail2ban
if ! [ -f /etc/fail2ban/jail.local ]; then
cp -v "$STOCK"/jail.local /etc/fail2ban/jail.local
cp -v "$STOCK"/filter/nginx-404.conf /etc/fail2ban/filter.d/
cp -v "$STOCK"/filter/nginx-proxy.conf /etc/fail2ban/filter.d/
cp -v "$STOCK"/filter/nginx-noscript.conf /etc/fail2ban/filter.d/
cp -v "$STOCK"/filter/nginx-auth.conf /etc/fail2ban/filter.d/
cp -v "$STOCK"/filter/nginx-login.conf /etc/fail2ban/filter.d/
#ssh
if [ -z "$SSHPORT" ]; then
sed -i "s/port.*= ssh/port = ssh,$SSHPORT/g" /etc/fail2ban/jail.local
fi
fi
service fail2ban restart
# portsentry default configuration
cp -v "$STOCK"/portsentry.conf /etc/portsentry/portsentry.conf
sed -i 's/="tcp"/="atcp"/' /etc/default/portsentry
sed -i 's/="udp"/="audp"/' /etc/default/portsentry
service portsentry restart
# rkhunter
sed -i 's;#ALLOWHIDDENDIR="/dev/.udev";ALLOWHIDDENDIR="/dev/.udev";' /etc/rkhunter.conf
sed -i 's;#ALLOWHIDDENDIR="/dev/.static";ALLOWHIDDENDIR="/dev/.static";' /etc/rkhunter.conf
sed -i 's;MAIL-ON-WARNING="";MAIL-ON-WARNING="root@localhost";' /etc/rkhunter.conf
echo "SCRIPTWHITELIST=/usr/bin/unhide.rb" >> /etc/rkhunter.conf
mkdir -p /etc/apt/apt.conf
cp -v "$STOCK/apt-rkhunter" /etc/apt/apt.conf/98-rkhunter
if [ -f /etc/ssh/sshd_config ]; then
echo PermitRootLogin no >> /etc/ssh/sshd_config
fi
}
doxmpp() {
# doxmpp <nom d'hote>
local NOMDHOTE="$1"
local SSLCONFIG=""
local prosodyconf='/etc/prosody/prosody.cfg.lua'
rapport << EOF
Pour que tout fonctionne bien, il serait bon de créer les champs DNS suivants :
- Un champ de type A : xmpp.mondomaine.com
- Des champs de type SRV vers xmpp.mondomaine.com comme ceci :
_xmpp-client._tcp.domaine.net. 18000 IN SRV 0 5 5222 xmpp.domaine.net.
_xmpp-server._tcp.domaine.net. 18000 IN SRV 0 5 5269 xmpp.domaine.net.
EOF
installapt prosody liblua5.1-sec
cp -v "$STOCK/prosody.cfg.lua" "${prosodyconf}"
# ssl
dosslcert "$NOMDHOTE"
local SSLCONFIG="\"/etc/ssl/private/$NOMDHOTE.pem\""
process "$STOCK/prosody.cfg.lua" > "$prosodyconf"
enableport "5222/tcp"
enableport "5269/tcp"
service prosody restart
rapport << EOF
---
prosody installé et configuré
Pensez à ouvrir les ports 5222 et 5269.
* Site : http://prosody.im
EOF
}
doowncloud(){
# doowncloud <nom d'hote> </repertoire/pour/owncloud>
local domaineconf="/etc/nginx/conf.d/owncloud.conf"
local NOMDHOTE="$1"
local ROOTOFHTTP="$2"
local SSLCERT=""
installapt nginx php5 php5-gd php-xml-parser php5-intl curl libcurl3 php5-curl openssl ssl-cert php5-dev php5-fpm php5-cli php5-sqlite php5-common php5-cgi sqlite php-pear php-apc bzip2 libav-tools php5-mcrypt php5-imagick php5-json bzip2
prepwebserver 0 "/$ROOTOFHTTP" "$NOMDHOTE"
process "$STOCK/nginx-owncloud.conf" > "${domaineconf}"
phpuploadlimit
# owncloud
echo -e "Téléchargeons le dernier owncloud"
wget -c -O $TEMP/lastowncloud.tar.bz2 "https://download.owncloud.org/community/owncloud-8.0.0.tar.bz2"
tar xvjf $TEMP/lastowncloud.tar.bz2 -C "/$ROOTOFHTTP"
mkdir -p "/$ROOTOFHTTP/owncloud/"{apps,data,config}
chown -R www-data:www-data "/$ROOTOFHTTP/owncloud/"{apps,data,config}
service nginx restart
service php5-fpm restart
rapport << EOF
---
owncloud installé
Ouvrez dans un navigateur https://$NOMDHOTE pour terminer la configuration
* Site : http://owncloud.org
EOF
}
dodropcenter(){
#dodropcenter <nom d'hote> </repertoire/contenant/dropcenter>
local domaineconf="/etc/nginx/conf.d/dropcenter.conf"
local NOMDHOTE="$1"
local ROOTOFHTTP="$2"
local SSLCERT=""
installapt nginx php5 openssl ssl-cert php5-fpm php-apc unzip
prepwebserver 0 "/$ROOTOFHTTP" "$NOMDHOTE"
process "$STOCK/nginx-dropcenter.conf" > "${domaineconf}"
phpuploadlimit
# dropcenter
echo -e "Téléchargeons le dernier dropcenter"
wget -O $TEMP/lastdropcenter.zip "https://github.com/ldleman/dropcenter/archive/master.zip"
unzip $TEMP/lastdropcenter.zip -d "/$ROOTOFHTTP"
finwebserver 0 "/$ROOTOFHTTP"
chmod 755 "/$ROOTOFHTTP/dropcenter-master/uploads"
rapport << EOF
---
dropcenter installé
Ouvrez dans un navigateur https://$NOMDHOTE pour terminer la configuration
Si vous souhaitez augmenter la taille limite des fichiers chargés, modifiez la ligne suivante dans le fichier ${domaineconf}
client_max_body_size 1000M;
ainsi que dans le fichier /etc/php5/fpm/php.ini
upload_max_filesize = 1000M
post_max_size = 1000M;
* Site : http://projet.idleman.fr/dropcenter/
EOF
}
dopluxml(){
#dopluxml <nom d'hote> </dossier/contenant/pluxml>
local domaineconf="/etc/nginx/conf.d/pluxml.conf"
local NOMDHOTE="$1"
local ROOTOFHTTP="$2"
local SSLCERT=""
installapt nginx php5 openssl ssl-cert php5-fpm php-apc php5-gd unzip
prepwebserver 0 "/$ROOTOFHTTP" "$NOMDHOTE"
process "$STOCK/nginx-pluxml.conf" > "${domaineconf}"
# pluxml
echo -e "Téléchargeons le dernier pluxml"
wget -O $TEMP/lastpluxml.zip "http://telechargements.pluxml.org/download.php"
unzip $TEMP/lastpluxml.zip -d "/$ROOTOFHTTP"
finwebserver 0 "/$ROOTOFHTTP"
rapport << EOF
---
pluxml installé
Ouvrez dans un navigateur https://$NOMDHOTE pour terminer la configuration
Site : http://www.pluxml.org/
EOF
}
doblogotext(){
#doblogotext <nom d'hote> </dossier/contenant/blogotext>
local domaineconf="/etc/nginx/conf.d/blogotext.conf"
local NOMDHOTE="$1"
local ROOTOFHTTP="$2"
local SSLCERT=""
installapt nginx php5 openssl ssl-cert php5-fpm php-apc php5-gd unzip sqlite php5-sqlite
prepwebserver 0 "/$ROOTOFHTTP" "$NOMDHOTE"
process "$STOCK/nginx-blogotext.conf" > "${domaineconf}"
phpuploadlimit
# blogotext
echo "Téléchargeons le dernier blogotext"
wget -O $TEMP/lastblogotext.zip "http://lehollandaisvolant.net/blogotext/blogotext.zip"
unzip $TEMP/lastblogotext.zip -d "/$ROOTOFHTTP"
#themes blogotext
wget -O $TEMP/blogotext-themes.tar.gz "http://yeuxdelibad.net/DL/blogotext-themes.tar.gz"
tar xvf $TEMP/blogotext-themes.tar.gz -C "$ROOTOFHTTP"/themes/
finwebserver 0 "/$ROOTOFHTTP"
rapport << EOF
---
blogotext installé
Ouvrez dans un navigateur https://$NOMDHOTE pour terminer la configuration
* Site : http://lehollandaisvolant.net/blogotext/
EOF
}
dottrss(){
# dottrss <nom d'hote> </dossier/contenant/ttrss> <mot de passe de la base de donnée postgresql>
local domaineconf="/etc/nginx/conf.d/ttrss.conf"
local NOMDHOTE="$1"
local ROOTOFHTTP="$2"
local SSLCERT=""
local BDDPW="$3"
installapt nginx php5 openssl ssl-cert php5-fpm php-apc php-pear php5-pgsql postgresql postgresql-client postgresql-client-common php-db php5-curl php5-gd
prepwebserver 0 "/$ROOTOFHTTP" "$NOMDHOTE"
process "$STOCK/nginx-ttrss.conf" > "${domaineconf}"
# ttrss
echo "Téléchargeons le dernier tinytinyrss"
wget -c -O $TEMP/ttrss.tar.gz "https://github.com/gothfox/Tiny-Tiny-RSS/archive/1.12.tar.gz"
mkdir -p $TEMP/ttrss
tar xvf $TEMP/ttrss.tar.gz -C $TEMP/ttrss
mv $TEMP/ttrss/Tiny-Tiny-RSS-*/* "/$ROOTOFHTTP"
# postgresql config
preppgsql "$BDDPW"
createdbpgsql "ttrss" "$BDDPW"
finwebserver 0 "/$ROOTOFHTTP"
rapport << EOF
---
Tiny Tiny RSS installé
Ouvrez dans un navigateur https://$NOMDHOTE
Database server hostname est : localhost
Le nom de la base postgresql est : ttrss
Le nom d'utilisateur à renseigner est : www-data
* Site : http://tt-rss.org/redmine/projects/tt-rss/wiki
EOF
}
dokriss() {
# dokriss <nom d'hote> </repertoire/contenant/kriss>
echo "installation de kriss"
local domaineconf="/etc/nginx/conf.d/kriss.conf"
local NOMDHOTE="$1"
local ROOTOFHTTP="$2"
local SSLCERT=""
installapt php5 php-apc php5-fpm php5-curl nginx openssl ssl-cert
prepwebserver 0 "/$ROOTOFHTTP" "$NOMDHOTE"
process "$STOCK/nginx-kriss.conf" > "${domaineconf}"
wget -O "/$ROOTOFHTTP/index.php" http://raw.github.com/tontof/kriss_feed/master/index.php
finwebserver 0 "/$ROOTOFHTTP"
rapport << EOF
---
kriss installé
Ouvrez dans un navigateur http://$NOMDHOTE pour terminer la configuration
* Site : https://github.com/tontof/kriss_feed
EOF
}
dotor() {
# dotor <nickname> <bwrate> <bwburst> <pseudo> <email>
echo -e "installation de tor"
installapt tor
local NICKNAME="$1"
local BWRATE="$2"
local BWBURST="$3"
local PSEUDO="$4"
local EMAIL="$5"
process "$STOCK/torrc" > /etc/tor/torrc
enableport "9001/tcp"
service tor restart
rapport << EOF
---
Tor installé
Pensez à ouvrir le port 9001
* Site : https://www.torproject.org/
EOF
}
dopico(){
# dopico <nom d'hote> </dossier/contenant/pico> <mot de passe>
local domaineconf="/etc/nginx/conf.d/pico.conf"
local NOMDHOTE="$1"
local ROOTOFHTTP="$2"
local PICO_PASSWD="$(echo -n "${3}" |sha1sum |cut -d' ' -f1)"
local SSLCERT=""
installapt nginx php5 openssl ssl-cert php5-fpm php-apc unzip
prepwebserver 0 "/$ROOTOFHTTP" "$NOMDHOTE"
process "$STOCK/nginx-pico.conf" > "${domaineconf}"
# pico
echo "Téléchargeons le dernier pico"
wget -c -O $TEMP/pico.zip "https://github.com/gilbitron/Pico/archive/master.zip"
unzip $TEMP/pico.zip -d $TEMP/pico
mv $TEMP/pico/Pico-master/* "/$ROOTOFHTTP"
echo "Téléchargement du plugin pico_editor"
wget -c -O $TEMP/pico_editor.zip "https://github.com/gilbitron/Pico-Editor-Plugin/archive/master.zip"
mkdir -p "/$ROOTOFHTTP/plugins/pico_editor"
unzip $TEMP/pico_editor.zip -d $TEMP/pico_editor
mv $TEMP/pico_editor/Pico-Editor-Plugin-master/* "/$ROOTOFHTTP/plugins/pico_editor/"
process "$STOCK/pico_editor_config" > "/$ROOTOFHTTP/plugins/pico_editor/pico_editor_config.php"
finwebserver 0 "/$ROOTOFHTTP"
rapport << EOF
---
pico installé
Ouvrez dans un navigateur https://$NOMDHOTE/admin pour poster votre premier message
et consultez votre site à https://$NOMDHOTE .
* Site : http://pico.dev7studios.com/
EOF
}
doroundcube(){
#doroundcube <nom d'hote> </dossier/contenant/roundcube>
local domaineconf="/etc/nginx/conf.d/roundcube.conf"
local NOMDHOTE="$1"
local ROOTOFHTTP="$2"
local SSLCERT=""
installapt nginx php5 php-pear php5-sqlite openssl ssl-cert php5-fpm php-apc php5-mcrypt php5-intl php5-dev php5-gd aspell libmagic-dev sqlite
prepwebserver 0 "/$ROOTOFHTTP" "$NOMDHOTE"
process "$STOCK/nginx-roundcube.conf" > "${domaineconf}"
# roundcube
echo "Téléchargeons le dernier roundcube"
wget -c -O $TEMP/roundcube.tar.gz "http://sourceforge.net/projects/roundcubemail/files/roundcubemail/1.0.0/roundcubemail-1.0.0.tar.gz/download"
mkdir -p $TEMP/roundcubetmp
tar xvf $TEMP/roundcube.tar.gz -C $TEMP/roundcubetmp
mv $TEMP/roundcubetmp/roundcubemail*/* "/$ROOTOFHTTP"
finwebserver 0 "/$ROOTOFHTTP"
rapport << EOF
---
roundcube installé
Ouvrez dans un navigateur https://$NOMDHOTE/installer pour terminer l'installation
Après l'installation, supprimez le dossier $ROOTOFHTTP/installer avec la commande :
rm -r $ROOTOFHTTP/installer
* Site : http://roundcube.net
EOF
}
doroundcube-pgsql(){
# doroundcube-pgsql <nom d'hote> </dossier/contenant/roundcube> <Mot de passe pour la base de données>
local domaineconf="/etc/nginx/conf.d/roundcube.conf"
local NOMDHOTE="$1"
local ROOTOFHTTP="$2"
local SSLCERT=""
local BDDPW="$3"
installapt nginx php5 php-pear openssl ssl-cert php5-fpm php-apc php5-mcrypt php5-intl php5-dev php5-gd aspell libmagic-dev php5-pgsql postgresql postgresql-client postgresql-client-common
prepwebserver 0 "/$ROOTOFHTTP" "$NOMDHOTE"
process "$STOCK/nginx-roundcube.conf" > "${domaineconf}"
# roundcube
echo "Téléchargeons le dernier roundcube"
wget -c -O $TEMP/roundcube.tar.gz "http://sourceforge.net/projects/roundcubemail/files/roundcubemail/1.0.0/roundcubemail-1.0.0.tar.gz/download"
mkdir -p $TEMP/roundcubetmp
tar xvf $TEMP/roundcube.tar.gz -C $TEMP/roundcubetmp
mv $TEMP/roundcubetmp/roundcubemail*/* "/$ROOTOFHTTP"
# postgresql config
preppgsql "$BDDPW"
createdbpgsql "roundcubemail" "$BDDPW"
finwebserver 0 "/$ROOTOFHTTP"
rapport << EOF
---
roundcube installé
Ouvrez dans un navigateur https://$NOMDHOTE/installer pour terminer l'installation
Après l'installation, supprimez le dossier $ROOTOFHTTP/installer avec la commande :
rm -r $ROOTOFHTTP/installer
Database server hostname est : localhost
Le nom de la base postgresql est : roundcubemail
Le nom d'utilisateur à renseigner est : www-data
* Site : http://roundcube.net
EOF
}
dorainloop(){
# dorainloop <nom d'hote> </dossier/contenant/rainloop>
local domaineconf="/etc/nginx/conf.d/rainloop.conf"
local NOMDHOTE="$1"
local ROOTOFHTTP="$2"
local SSLCERT=""
installapt nginx php5 php-pear php5-sqlite openssl ssl-cert php5-fpm php-apc php5-curl unzip
prepwebserver 0 "/$ROOTOFHTTP" "$NOMDHOTE"
process "$STOCK/nginx-rainloop.conf" > "${domaineconf}"
# rainloop
echo "Téléchargeons le dernier rainloop"
wget -c -O $TEMP/rainloop.zip "http://repository.rainloop.net/v2/webmail/rainloop-latest.zip"
unzip $TEMP/rainloop.zip -d "/$ROOTOFHTTP"
finwebserver 0 "/$ROOTOFHTTP"
rapport << EOF
---
rainloop installé
Ouvrez dans un navigateur https://$NOMDHOTE?admin pour terminer la configuration.
Par défaut, le nom d'utilisateur est "admin"
le mot de passe est "12345".
Ouvrez dans un navigateur https://$NOMDHOTE pour consulter l'interface.
* Site : http://rainloop.net
EOF
}
dowallabag(){
# dowallabag <nom d'hote> </dossier/contenant/wallabag>
local domaineconf="/etc/nginx/conf.d/wallabag.conf"
local NOMDHOTE="$1"
local ROOTOFHTTP="$2"
local SSLCERT=""
installapt nginx php5 php5-sqlite openssl ssl-cert php5-fpm php-apc php5-curl unzip php5-mcrypt php5-tidy php5-cli curl
prepwebserver 0 "/$ROOTOFHTTP" "$NOMDHOTE"
process "$STOCK/nginx-wallabag.conf" > "${domaineconf}"
# wallabag
echo "Téléchargeons le dernier wallabag"
wget -c -O $TEMP/wallabag.zip "http://wllbg.org/latest"
mkdir -p $TEMP/wallabagtmp
unzip $TEMP/wallabag.zip -d $TEMP/wallabagtmp
mv $TEMP/wallabagtmp/wallabag-*/* "/$ROOTOFHTTP"
# Twig
cd "$ROOTOFHTTP"
curl -s http://getcomposer.org/installer | php
php composer.phar install
finwebserver 0 "/$ROOTOFHTTP"
rapport << EOF
---
wallabag installé
Ouvrez dans un navigateur https://$NOMDHOTE pour terminer l'installation
* Site : https://www.wallabag.org
* Applications : https://www.wallabag.org/downloads/
EOF
}
dojirafeau(){
# dojirafeau <nom d'hote> </dossier/contenant/jirafeau>
local domaineconf="/etc/nginx/conf.d/jirafeau.conf"
local NOMDHOTE="$1"
local ROOTOFHTTP="$2"
local DOCROOT="$3"
local SSLCERT=""
installapt nginx php5 openssl ssl-cert php5-fpm php-apc
prepwebserver 0 "/$ROOTOFHTTP" "$NOMDHOTE"
process "$STOCK/nginx-jirafeau.conf" > "${domaineconf}"
phpuploadlimit
# jyraphe
echo "Téléchargeons le dernier jirafeau"
mkdir -p $TEMP/jirafeau
wget -c -O $TEMP/jirafeau.zip "https://gitlab.com/mojo42/Jirafeau/repository/archive.zip"
unzip $TEMP/jirafeau.zip -d $TEMP/jirafeau
mv $TEMP/jirafeau/Jirafeau.git/* "/$ROOTOFHTTP"
chown -R www-data:www-data "/$ROOTOFHTTP"
service nginx restart
service php5-fpm restart
rapport << EOF
---
jirafeau installé
Ouvrez dans un navigateur https://$NOMDHOTE/install.php
pour terminer l'installation
* Site : https://gitlab.com/mojo42/Jirafeau/wikis/home
EOF
}
dojyraphe(){
# dojyraphe <nom d'hote> </dossier/contenant/jyraphe> </dossier/contenant/les/documents>
local domaineconf="/etc/nginx/conf.d/jyraphe.conf"
local NOMDHOTE="$1"
local ROOTOFHTTP="$2"
local DOCROOT="$3"
local SSLCERT=""
installapt nginx php5 openssl ssl-cert php5-fpm php-apc
prepwebserver 0 "/$ROOTOFHTTP" "$NOMDHOTE"
process "$STOCK/nginx-jyraphe.conf" > "${domaineconf}"
phpuploadlimit
# jyraphe
echo "Téléchargeons le dernier jyraphe"
mkdir -p $TEMP/jyraphe
wget -c -O $TEMP/jyraphe.tar.gz "http://download.gna.org/jyraphe/jyraphe-0.5.tar.gz"
tar xvf $TEMP/jyraphe.tar.gz -C $TEMP/jyraphe
mv $TEMP/jyraphe/jyraphe/pub/* "/$ROOTOFHTTP"
rm "/$ROOTOFHTTP/install.php"
mkdir -p "$DOCROOT/"{files,links,trash}
process "$STOCK/jyraphe_config.php" > "/$ROOTOFHTTP/lib/config.local.php"
chown -R www-data:www-data "/$ROOTOFHTTP"
chown -R www-data:www-data "/$DOCROOT"
service nginx restart
service php5-fpm restart
rapport << EOF
---
jyraphe installé
Ouvrez dans un navigateur https://$NOMDHOTE
* Site : http://home.gna.org/jyraphe/
EOF
}
dozerobin(){
# dozerobin <nom d'hote> </dossier/contenant/zerobin>
local domaineconf="/etc/nginx/conf.d/zerobin.conf"
local NOMDHOTE="$1"
local ROOTOFHTTP="$2"
installapt nginx php5 php5-fpm php-apc unzip
prepwebserver 0 "/$ROOTOFHTTP" "$NOMDHOTE"
process "$STOCK/nginx-zerobin.conf" > "${domaineconf}"
# zerobin
echo "Téléchargeons le dernier zerobin"
wget -c -O $TEMP/zerobin.zip "https://github.com/sebsauvage/ZeroBin/archive/master.zip"
mkdir -p $TEMP/zerobin
unzip $TEMP/zerobin.zip -d $TEMP/zerobin
mv $TEMP/zerobin/ZeroBin-master/* "/$ROOTOFHTTP"
finwebserver 0 "/$ROOTOFHTTP"
rapport << EOF
---
ZeroBin installé
Ouvrez dans un navigateur https://$NOMDHOTE
* Site : http://sebsauvage.net/wiki/doku.php?id=php:zerobin
EOF
}
doshaarli(){
# doshaarli <nom d'hote> </dossier/contenant/shaarli>
local domaineconf="/etc/nginx/conf.d/shaarli.conf"
local NOMDHOTE="$1"
local ROOTOFHTTP="$2"
local SSLCERT=""
installapt nginx php5 openssl ssl-cert php5-fpm php-apc unzip
prepwebserver 0 "/$ROOTOFHTTP" "$NOMDHOTE"
process "$STOCK/nginx-shaarli.conf" > "${domaineconf}"
# shaarli
echo "Téléchargeons le dernier shaarli"
wget -c -O $TEMP/shaarli.zip "https://github.com/sebsauvage/Shaarli/archive/master.zip"
mkdir -p $TEMP/shaarli
unzip $TEMP/shaarli.zip -d $TEMP/shaarli
mv $TEMP/shaarli/Shaarli-master/* "/$ROOTOFHTTP"
finwebserver 0 "/$ROOTOFHTTP"
rapport << EOF
---
Shaarli installé
Ouvrez dans un navigateur https://$NOMDHOTE
* Site : http://sebsauvage.net/wiki/doku.php?id=php:shaarli
EOF
}
dojotter(){
# dojotter <nom d'hote> </dossier/contenant/jotter>
local domaineconf="/etc/nginx/conf.d/jotter.conf"
local NOMDHOTE="$1"
local ROOTOFHTTP="$2"
local SSLCERT=""
installapt nginx php5 openssl ssl-cert php5-fpm php-apc unzip