-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathChangeLog
More file actions
1164 lines (882 loc) · 43.2 KB
/
ChangeLog
File metadata and controls
1164 lines (882 loc) · 43.2 KB
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
2026-04-08 Daniel Teichmann
* VERSION: Bump version to 1.3.5 (HEAD -> main)
* src/setup-signaling.sh coturn: Do not fail if IPv6 address could
not be found. (3bd27f9)
2026-04-01 Daniel Teichmann
* setup-nextcloud-hpb.sh: Provide alternative to ident.me backends
(tnedi.me); Move EXTERNAL_IPVX stuff into main file.
(02d8994)
Fixes:
https://github.com/sunweaver/nextcloud-high-performance-backend-setup/issues/216
Fixes:
https://github.com/sunweaver/nextcloud-high-performance-backend-setup/issues/236
* setup-nextcloud-hpb.sh: Output log_err into stderr. (3e4677c)
2026-04-08 Daniel Teichmann
* src/setup-msmtp.sh: Use new replace_placeholder_in_files() function
to replace password. (03467aa)
* src/setup-msmtp.sh: EMAIL_USE_STARTTLS use real 'tls_starttls'
option instead of 'true'. (c18d4e5)
2026-04-01 Daniel Teichmann
* data/certbot/deploy-hook-certbot.sh: Do reload/restart services if
they use SSL certificates. (92f3bc6)
2026-03-25 Daniel Teichmann
* setup-nextcloud-hpb.sh: Fix punctuation typos. (a596c3c)
* MSMTP: Add new option to enable STARTTLS. (719814d)
* Drop support for Debian 11 and Debian 12. (b4e29d6)
* setup-nextcloud-hpb.sh: Update LetsEncrypt TermsOfService URL.
(0a9387a)
* setup-nextcloud-hpb.sh: Improve availability log messages from
signaling's multiple apt-packages. (79064f5)
* setup-nextcloud-hpb.sh: Improve MSMTP dialogs. (b48044e)
2026-02-05 Daniel Teichmann
* MSMTP: Fix password replacement. (Password can contain '\', '|' and
'/' at the same time now) (32eb042)
Fixes:
https://github.com/sunweaver/nextcloud-high-performance-backend-setup/issues/196
2026-01-16 vsessink
* setup-signaling: apt-cache policy language change (7249c49)
* apt-cache policy language change (ff5ef8f)
2025-10-27 Daniel Teichmann
* New release 1.3.3 (48599f4) (tag: 1.3.3)
* VERSION: Bump version to 1.3.3 (aaa8069)
* setup-nextcloud-hpb.sh: Fix old logging files being deleted too
late in the script (d6534b8)
* setup-signaling: Add janus .deb caching (30059ff)
* setup-signaling: Temporarily revert cache changes to janus building
system (78b3a96)
Fixes:
https://github.com/sunweaver/nextcloud-high-performance-backend-setup/issues/209
* setup-nextcloud-hpb.sh: Fix color codes in log file and color still
being applied after script exit (326f399)
* setup-signaling run_with_progress(): Improve error handling and
logging (b98073a)
* setup-nextcloud-hpb: Do not print password of email user account in
logs (1a9216c)
* setup-signaling: Fix janus .deb non-existence would lead to script
random exit (b5ffd80)
* New release 1.3.2 (3752fd4) (tag: 1.3.2)
* VERSION: Bump version to 1.3.2 (d7cb619)
* Add bug report issue templates (EN/DE) (0a89c36)
* setup-signaling: Use run_with_progress() to build n-s-s (5e56297)
* setup-signaling: Implement cache for Janus builds (6999d67)
* setup-signaling: Fix bug where janus-build-deps would interfere
with build marker system (8f1653d)
* setup-signaling: Make build progress output more user-friendly
(9d05e6f)
* settings.sh: Adjust log file path to use absolute path. (3aac8ee)
* setup-signaling: Fix bug where janus would not be built on Debian
13 (8c906cf)
Fixes:
https://github.com/sunweaver/nextcloud-high-performance-backend-setup/issues/205
* signaling: Ensure /etc/janus directory exists before deploying
config files (14f8e8b)
* Improved error logging in service management: Add summary of errors
when services cannot be enabled, stopped, or started.
(5b779b9)
* Improved error logging in scripts: log() replaced with log_err() to
more clearly indicate errors. (7d7953a)
2025-10-24 Daniel Teichmann
* setup-nginx index.html: Show Debian major version and current
script version. (d7b28a1)
* setup-collabora: Fix issue where exact '/collabora' path would not
be proxied to coolwsd. (8fd1a6a)
2025-10-23 Daniel Teichmann
* New release 1.3.1 (508b413) (tag: 1.3.1)
* VERSION: Bump version to 1.3.1. (ea77d16)
* setup-certbot: Fix typo. (5dbf241)
* setup-certbot: Fix new versions of Certbot using a slightly
different error message for rate limits. (a6d1100)
* setup-signaling: Fixup mistakes made by last commit revert.
(1ac6855)
* setup-collabora: Replace old 'apt-cache show...' with 'apt-cache
policy...'. (a6ee146)
* New release 1.3. (e5c0a70) (tag: 1.3)
* VERSION: Bump version to 1.3. (1ff1a92)
* Revert "Added dns challenge authentication for ipv64, Updated
script to work behind NAT" (dc17db3)
* setup-msmtp: Fix bug where failed mail test would lead to positive
result text. (e4b1558)
* src/setup-*.sh: Colourize secrets output for better visibility.
(df887be)
* setup-nextcloud-hpb deploy-file(): Add log messages for dry-run
mode. (c91e231)
* setup-signaling: Use https for ident.me (fedc7e5)
* src/setup-*.sh: Make step logging message colorful. (cc7fbd9)
* Announce installation steps colorfully with nice banners. (6ec581b)
* Add optional colored output to setup-nextcloud-hpb.sh (42ca45c)
* setup-signaling: Do not rebuild packages every time, if they are
already built. (b3969d7)
* setup-signaling: build janus: install equivs package to satisfy
janus dependencies (4d9e915)
* setup-signaling: build janus: add cleanup and directory management
(f1a0653)
* setup-nextcloud-hpb: Fix Signaling package detection. (3a957f2)
* setup-signaling: Add missing dry-run checks. (00bbceb)
* is_dry_run(): Logging a message explaining what would've happened
if not currently in dry-run. (bcaf335)
* setup-signaling: Better log messages when building software
(64b1b8a)
* setup-signaling: Fix bug where purge would not be successful, if
multiple packages were to be purged. (a4e152e)
* setup-signaling: add support for Janus package installation and
building (711b0e8)
2025-10-22 Daniel Teichmann
* signaling-server(conf): revert accidental config line change
(c046e0b)
* signaling-server: update configuration file for Debian 13 (upstream
v1.2.4) (a45d033)
2025-10-08 Daniel Teichmann
* Update README for Debian 13 support (a0001e6)
* Update README for Debian 13 (Trixie) support (968fc31)
* data/collabora/coolwsd.xml: Move <remote_font_config> to the
beginning of the <config> block. (555bc73)
Fixes:
https://github.com/sunweaver/nextcloud-high-performance-backend-setup/issues/120
2025-08-25 Daniel Teichmann
* src/setup-collabora.sh: Fix bug where installation would stop for
Debian 13. (65aeb69)
Fixes:
https://github.com/sunweaver/nextcloud-high-performance-backend-setup/issues/190
2024-06-24 lodzen
* Added dns challenge authentication for ipv64, Updated script to
work behind NAT (3ed87fb)
2025-08-27 Daniel Teichmann
* setup-nextcloud-hpb.sh: Fix missing spaces in dialog text.
(91aa1dc)
* src/setup-signaling.sh: Improve log messages and comments.
(129b4aa)
2025-05-21 Arthur BOUDREAULT
* fix: Correct APT purge command syntax by adjusting parameter order
(b30f278)
2025-05-19 Thomas MICHEL
* fix: APT_PARAMS factorize and declared upper for apt purge use
(165d360)
* fix: update apt cache only after sources.list update (8a6a33f)
2025-05-15 Thomas MICHEL
* fix: debian12 from source (4c0c46e)
2025-03-20 Daniel Teichmann
* New release 1.2.7a. (e382dae) (tag: 1.2.7a)
* VERSION: Bump version to 1.2.7a. (9563db1)
* setup-nextcloud-hpb.sh: Fix "Build from sources?"-dialog of N-S-S
being defaultno; Changing text to be more
clear/informative. (d460f67)
2025-02-19 Daniel Teichmann
* New release 1.2.7. (1b4ddee) (tag: 1.2.7)
* VERSION: Bump version to 1.2.7. (6b16220)
* setup-nextcloud-hpb.sh: Fix previous broken commit. (Missing ").
(c60ceea)
2025-02-10 Daniel Teichmann
* setup-nextcloud-hpb.sh: Add dummy-if-switch for toggling between,
if 'Debian package' or 'building from sources' is
suggested. (653e41c)
2024-10-17 Daniel Teichmann
* src/setup-msmtp.sh: Check for MSMTP requirements (EMAIL_*).
(eb1b720)
Fixes:
https://github.com/sunweaver/nextcloud-high-performance-backend-setup/issues/93
2024-02-17 Mirco
* Update README_en.md (f7fa53c)
* Update README_en.md (fec9ff6)
* Update README_en.md (a2ef64f)
2024-02-15 Daniel Teichmann
* New release 1.2.6. (fe9e186) (tag: 1.2.6)
* VERSION: Bump version to 1.2.6. (c75e443)
* src/setup-signaling.sh: Install golang-go from bookworm-backports
for Debian 12 bookworm. (fa3afc7)
Fixes:
https://github.com/sunweaver/nextcloud-high-performance-backend-setup/issues/144
2024-02-12 Daniel Teichmann
* src/setup-signaling.sh: Also install
nextcloud-spreed-signaling-client for Debian 12+.
(8025041)
* src/setup-signaling.sh: Rename bullseye-backports.list to
debian-backports.list. (823c366)
* settings.sh: Set default value of UNATTENDED_INSTALL to false.
(b0c45a5)
2024-02-08 Daniel Teichmann
* New release 1.2.5. (efe2ba5) (tag: 1.2.5)
* VERSION: Bump version to 1.2.5. (4b5e7c5)
* settings.sh: Link wiki page, where settings.sh is explained.
(9374423)
2024-01-27 Mirco
* Update README_en.md (67f9da5)
* Update README.md (6745200)
* Update README.md (5c20dd5)
2024-01-23 Daniel Teichmann
* src/setup-signaling.sh: Install 'nextcloud-spreed-signaling' from
bookworm-backports (at the right place in the code now).
(f73d731)
* setup-nextcloud-hpb.sh: Fix text of whiptail dialogs for
built-signaling-from-sources. (9e03dc7)
* src/setup-signaling.sh: Simplify all apt install commands via
APT_PARAMS. + Drop installing nextcloud-spreed-signaling
package, if signaling backend should be build from
sources. (ade202e)
* src/setup-signaling.sh: Always build nextcloud-spreed-signaling if
signaling backend should be build from sources. (cdb1405)
* src/setup-signaling.sh: Fix setups where the user first installed
from packages and then wants to build from sources.
(f617507)
* setup-nextcloud-hpb.sh: Fix renaming leftover DEBIAN_MAJOR_VERSION
to DEBIAN_VERSION_MAJOR. (31cc13d)
2024-01-19 Mike Gabriel
* Also support testing nextcloud-spreed-signaling packages available
in Debian bookworm-backports. (241c434)
2023-11-18 Mike Gabriel
* Support testing nextcloud-spreed-signaling packages available in
Debian trixie/sid. (cdb7569)
* setup-nextcloud-hpb.sh: Explain why signaling server packages could
be missing from Debian nowadays. (1cd20a0)
* Rename DEBIAN_MAJOR_VERSION DEBIAN_VERSION_MAJOR. (351dd3b)
* setup-nextcloud-hpb.sh: Refactor check_debian_version(). (cb0138a)
2023-11-17 PhilDevProg
* Revert "Remove support for PowerPC64LE" (e49e6a4)
* Remove support for PowerPC64LE (5066de7)
2023-11-06 PhilProg
* setup-signaling: Fix typos (7717347)
2023-11-05 PhilDevProg
* Fix janus configs (4b57a71)
2023-11-04 PhilDevProg
* Add janus_powerpc64le.jcfg and use it for ppc64el (be61213)
* Build nats: Add support for arm64 (e77dc67)
* Add janus_aarch64.jcfg and use it for arm64 (508abad)
2023-11-05 PhilProg
* Update README.md (f156c60)
2023-10-06 Mirco
* Update README_en.md (b6d8936)
* Update README_en.md (b1d50db)
* Update README.md (20ce380)
2023-10-06 Daniel Teichmann
* Release 1.2.4 (a1628cd) (tag: 1.2.4)
* VERSION: Bump version to 1.2.4 (7503a68)
2023-10-05 Daniel Teichmann
* src/setup-signaling.sh: Fix typo; Add comment about legacy code
(Adding sunweaver's repo). (6ca8463)
* src/setup-collabora.sh: Update repo URI. (92a33e1)
Fixes: #119
* src/setup-msmtp.sh: Preseed and then install package.. Swapping
step1 with step2. (1695510)
Fixes: #118
* {src/setup-signaling.sh, setup-nextcloud-hpb.sh}: Always build from
sources for nextcloud-spreed-signaling. (5571d2f)
Fixes:
#114
* src/setup-collabora.sh: Silence apt-add-repository. (609a2ae)
Fixes:
#117
* Makefile: Remove 'clean' target as dependency for 'all'. (f7abbf8)
2023-09-04 Daniel Teichmann
* src/setup-signaling.sh: Make sure /etc/nginx/snippets/ is created,
before trying to deploy files there. (4125f5d)
Fixes: #99
* setup-nextcloud-hpb.sh: Check dependency 'wget'; Install if
necessary. (7023afb)
Fixes: #92
2023-09-15 Daniel Teichmann
* src/setup-signaling.sh: Smartly detect if we should use
'--force-badname' or '--allow-bad-names' option for
adduser. (11003c6)
Fixes: #100
* src/setup-msmtp.sh: Escape EMAIL_USER_PASSWORD before passing it to
sed. (6050811)
Fixes: #106
2023-04-12 Mirco
* Update README.md (6a193d9)
* Update README_en.md (d360297)
* Update README.md (0582da3)
2023-03-05 Mirco
* Update README_en.md (b228445)
* Update README.md (ed21f0b)
2023-03-02 Daniel Teichmann
* release 1.2.3 (ef25c09) (tag: 1.2.3)
* VERSION: Bump version number to 1.2.3. (ddfe631)
2023-03-01 Daniel Teichmann
* src/setup-signaling.sh: Install wget and curl before trying to
build. (e828bf6)
* src/setup-msmpt.sh: Fix typo in error dialog title. (9a033ae)
* setup-nextcloud-hpb.sh: Always add necessary dirs to PATH env
variable. (fe898a2)
2023-02-28 PhilProg
* README_en: Translate DSGVO correctly (65c9dbd)
2023-01-24 PhilProg
* dumb version (773ab59)
2023-01-23 Mike Gabriel
* release 1.2.2 (a149c27) (tag: 1.2.2)
* Merge branch 'DecaTec-IT-office-remote_font_config' (24a7c0c)
2022-12-11 DecaTec
* Avoid recurring NC domains in Collabora remote font config
(c6301c6)
* Variable naming (5c11737)
2022-12-06 DecaTec
* Set (multiple) collabora remote_configs (d229b16)
2022-12-12 PhilProg
* dumb version (8ae8f5f)
2022-12-05 Mike Gabriel
* Correctly spell UNATTENDED. (8f44128) (tag: 1.2.1)
2022-12-05 Daniel Teichmann
* data/unattended-upgrades/60unattended-upgrades-nextcloud-hpb-setup:
Don't erase old config files at upgrade. (fd613cd)
Fixes:
#74
* setup-nextcloud-hpb.sh: Check if whiptail is installed and if not,
install it. (976e4c3)
Fixes: #71
* src/setup-collabora.sh: Print Collabora configuration file into
secrets file. (9cfe8dc)
Fixes: #72
2022-12-04 Mirco
* link fix (fded493)
* link fix (3643dec)
2022-11-25 PhilProg
* README_en: Wiki is in German (ea588f0) (tag: 1.2)
2022-11-25 Mirco
* dump version (053a93d)
2022-11-23 Daniel Teichmann
* src/setup-certbot.sh: Handle LetsEcrypt rate limit + Implement
dialog which asks to enable staging certs. (b858580)
Fixes:
#58
* data/certbot/deploy-hook-certbot.sh: Add new deploy fil.
src/setup-certbot.sh: Deploy deploy-hook-certbot.sh file.
(7b83821)
Fixes: #50
* src/setup-certbot.sh: Find every directory under
/etc/letsencrypt/{archive, live}/ and make chmod 2750.
(2c08770)
* src/setup-msmtp.sh: Fix small typo in $dialog_text. (137f098)
* src/setup-msmtp.sh: Remove $from_address completely and let msmtp
decide. (10e53de)
* src/setup-msmtp.sh: Intercept msmtp if it failed and show error
dialog by default. (7326598)
Fixes: #63
* settings.sh: Add standard SMTP port 25 for EMAIL_SERVER_PORT.
(4ca7d8a)
* src/setup-certbot.sh: Split steps into own functions; Also generate
DHPARAM file for Certbot. (b07ce06)
* src/setup-{signaling, nginx}.sh, setup-nextcloud-hpb.sh: Move
dhparam generation into main file and prevent multiple
openssl calls. (a0501a4)
* src/setup-certbot.sh: Fixup for: 8c953c9b39. (98b1fac)
* src/setup-certbot.sh: Fix running setup-certbot in dry mode.
(457dd3f)
* src/setup-certbot.sh: Fix: Install needed 'ssl-cert' package too.
(cb39934)
* AUTHORS: Clean up AUTHORS file. (d59f886)
2022-11-17 Daniel Teichmann
* src/setup-unattendedupgrades.sh: Enable Unattended-Upgrades for
Collabora. (3280796)
* src/setup-unattendedupgrades.sh: Introduce new style for
configuring unattended-upgrades. (dee620e)
2022-11-18 Daniel Teichmann
* src/setup-signaling.sh: Don't build software if dry run is
activated. (0eb1c1f)
* src/setup-signaling.sh: Nats-Server building: Introduce
LATEST_RELEASE_TAG to make copying more precise &
Refactor. (bf1bd04)
* src/setup-msmtp.sh: Change From address to EMAIL_USER_ADDRESS for
test email. (65c43f1)
Fixes: #56
2022-11-17 Daniel Teichmann
* All files: Ensure newline at the end of all files. (2ad198b)
2022-11-16 Daniel Teichmann
* setup-nextcloud-hpb.sh: Update E-Mail dialog texts to give more
details. (9020d54)
* setup-nextcloud-hpb.sh: Fix formatting of '====' lines. (c8dd9ec)
* src/setup-nginx.sh: Fix copy&paste typo. (e45eb00)
* settings.sh: Fix whitespace; src/setup-msmtp.sh: Add
msmtp_print_info() & msmtp_write_secrets_to_file() text.
(25476cf)
* src/setup-msmtp.sh: Update msmtp_step5() to actually send a working
HTML email. (9a92912)
* data/msmtp/msmtprc, settings.sh, src/setup-msmtp.sh: Add
EMAIL_SERVER_PORT variable to customize the SMTP port.
(851f8df)
* settings.sh, setup-nextcloud-hpb.sh: Introduce msmtp setup.
(2d90dfa)
* Replace '↳' character with '-' character uniformly to ensure
maximum console support. (9b87f16)
* Rename $EMAIL_ADDRESS variable to $EMAIL_USER_ADDRESS. (d32ff9a)
* src/setup-msmtp.sh: Add msmtp setup draft. (43348fc)
* .gitignore: Ignore potential secrets files. (f566a52)
2022-11-18 Daniel Teichmann
* src/setup-signaling.sh: Improve whitespacing of commands. (ca0af83)
2022-11-16 Daniel Teichmann
* data/msmtp/{aliases, msmtprc, test-email.html}: New configuration
files. (c5c3f29)
2022-11-21 Daniel Teichmann
* src/setup-collabora.sh: Execute apt update after enabling contrib.
(764e419)
2022-11-18 Daniel Teichmann
* setup-nextcloud-hpb.sh: Fix Debian bookworm behaviou.
src/setup-collabora.sh: Implement hack for Debian 12.
(c77a273)
Fixes: #54
2022-11-22 Mike Gabriel
* release 1.1.1 (7a60130) (tag: 1.1.1)
2022-11-22 Daniel Teichmann
* setup-nextcloud-hpb.sh: Log VERSION number at startup. (44e4c0c)
* VERSION: Bump version number to 1.1.1 (7865a70)
2022-11-09 Daniel Teichmann
* Make certbot certs available to ssl-cert group + Add turnserver
user to ssl-cert group. (09a90a6) (tag: 1.1)
Fixes: #22
* data/signaling/coturn-certbot-deploy.sh, src/setup-signaling.sh:
Remove old certbot deploy file. (2a9dda3)
* setup-nextcloud-hpb.sh: Change size of dialogs to fit text.
(2523cd7)
Fixes: #45
2022-11-11 DecaTec
* Set static resolver (a426e00)
2022-11-10 DecaTec
* Create DHP dir (8ef9efc)
2022-11-09 DecaTec
* DHParams for nginx; SSL optimizations (2de1a32)
2022-11-09 Daniel Teichmann
* Introduce SSL_CHAIN_PATH_ECDSA & SSL_CHAIN_PATH_RSA.
(952dd1a)
Fixes: #32
2022-11-03 DecaTec
* src/setup-certbot.sh: Replace SSL_CERT_* with
SSL_CERT_*_{RSA,ECDSA} variants. (a1675e1)
2022-11-05 DecaTec
* Fix errors while starting coturn; added missing NATs user and
config (a615e53)
2022-11-04 Mirco
* setup-signaling: Change wss to https (part2) (9c3d9e8)
* setup-signaling: Change ↳ to - (7a343bc)
* setup-signaling: Change wss to https (f7593bc)
2022-11-04 DecaTec
* Fix installing crontab (8666017)
2022-11-03 Mike Gabriel
* data/nginx/headers.conf: Add new-line at EOF. (a937a71)
2022-11-03 DecaTec
* webserver headers (3e1f1ee)
* ufw ports; 4096 bit RSA; restart janus at system reboot (ea69160)
* ufw ports; 4096 bit RSA; restart janus after system reboot
(1d62a6a)
* Signaling backend port 8080 (807b948)
2022-10-17 Mike Gabriel
* release 1.0.1 (01c482b) (tag: 1.0.1)
2022-09-21 Mike Gabriel
* signaling setup: Use port 5349 instead of 1271, as 5349 is sort-of
the well-known port for TURNS/STUNS. (b07d39a)
* signaling setup: Use port 3478 instead of 1270, as 3478 is sort-of
the well-known port for TURN/STUN. (f3d2127)
2022-10-17 Mike Gabriel
* src/setup-signaling.sh: Drop already commented out base64 patching
of coturn server with No-FIPS-140-mode.patch. The patch
has been applied upstream. (8f934ce)
2022-10-10 Mirco
* Update setup-signaling.sh (8d53ef1)
2022-09-21 Mike Gabriel
* src/setup-unattended-upgrades.sh: Drop duplicate file. (c00666b)
2022-09-02 PhilProg
* README_en: Add Debian 11 as requirement (d9fb7da)
* README_en: Add link to releases page (ab515b1)
* README: Add link to releases page (8bc88b5)
2022-09-02 Mike Gabriel
* release 1.0 (c2e3f0a) (tag: 1.0)
2022-08-31 Mike Gabriel
* src/setup-unattended-upgrades.sh: Tab'ify script. (aad5e96)
* Some minor white-space fixes. (beea0ad)
2022-08-31 PhilProg
* README: Rearrange languages (a6932f7)
* README_en: Rearrange languages (6b5d6d7)
* Update README.md (e4fadd6)
* setup-signaling: Wrong package: janus -> golang-go (898dd93)
* setup-signaling: Only install janus from bullseye-backports if the
system is running Debian 11 (ce493f4)
* setup-signaling: Only enable bullseye-backports if Debian version
is 11 (390ceaf)
* setup-signaling: Install janus from normal repo if signaling
installation way is via packages (836f9b8)
* setup-signaling: Remove Debian version if clause (188f548)
* setup-signaling: Fix typo (8bf9094)
* setup-signaling: Remove janus from the wrong apt command (c969a65)
* setup-signaling: Rearrange apt commands (f162846)
* setup-signaling: Typo fix (9fff35c)
* setup-signaling: Install janus from bullseye-backports when not
building from sources (7421875)
* setup-signaling: Install golang-go&janus from bullseye-backports
(a8eea1a)
* setup-signaling: Enable bullseye-backports (114f636)
* setup-signaling: Disable sunweaver repository (38e1e6f)
* setup-signaling:Remove unnecessary removal of pkgs (f29bb09)
* Revert "Revert "src/setup-collabora.sh: Enable contrib."" (0132493)
2022-08-31 Mirco
* Update README.md (333bce4)
2022-08-30 PhilProg
* setup-signaling: Check if /etc/nextcloud-spreed-signaling exists
before creating it (6156e44)
2022-08-30 Mirco
* Update README_en.md (a6c0daa)
* Update README.md (dc0fd67)
2022-08-29 Mike Gabriel
* setup-nextcloud-hpb.sh: Typo fix (newline character) in a message
dialog. (30fa5f2)
* src/setup-certbot.sh: Issue 'certbot renew --force-renewal' after
'certbot certonly', so that the deploy hook gets executed
properly.~ (4894c87)
* Revert "src/setup-certbot.sh: Add --force-renewal to certbot call
to assure our deploy hook gets called on certonly action."
(d4911c1)
* src/setup-certbot.sh: Add --force-renewal to certbot call to assure
our deploy hook gets called on certonly action. (bdee335)
* Revert "src/setup-collabora.sh: Enable contrib." (8e0c661)
* Regression fix for 73cb6336. Missing backslash at EOL. (20ada23)
* setup-nextcloud-hpb.sh: Fine-tune dialog message. (0f342fe)
* setup-nextcloud-hpb.sh: Rework English wording of dialog messages.
(73cb633)
2022-08-27 Mirco
* setup-signaling: build_nextcloud-spreed-signaling: Create
/etc/nextcloud-spreed-signaling (c54bf42)
* setup-nextcloud-hpb: Add missing build from sources=true variable
(d76a2ed)
2022-08-12 Daniel Teichmann
* setup-nextcloud-hpb.sh: Remove disrupting 'delete; in /tmp'
question. (d5bab41)
* setup-nextcloud-hpb.sh: Make signaling's build-from-sources dialog
smarter. (6491fae)
* setup-nextcloud-hpb.sh: Remove disruptive file-overwrite question.
(8c7d5c9)
2022-08-11 Daniel Teichmann
* setup-nextcloud-hpb.sh: Make sure all services are unmasked before
trying to start them. (179ab8b)
* src/setup-signaling.sh: Make sure janus and ssl-cert get installed
even if we build from sources. (f4daa7a)
* src/setup-signaling.sh: Install 'protobuf-compiler' package for
build-signaling-from-sources. (a5504db)
* src/setup-signaling.sh: Create 'turnserver' and '_signaling' system
users after building. (1b3cf53)
2022-08-10 Daniel Teichmann
* Makefile: add new files to clean target. (0f18193)
* data/signaling/nats-server.service, src/setup-signaling.sh: Add
nats-server 'build' logic. (ae70619)
2022-08-08 Daniel Teichmann
* data/signaling/coturn.service, src/setup-signaling.sh: Add coturn
build logic. (37306a8)
* data/signaling/nextcloud-spreed-signaling.service,
src/setup-signaling.sh: Add nextcloud-spreed-signaling
build logic. (69f7c03)
* setup-nextcloud-hpb.sh, settings.sh: Add
SIGNALING_BUILD_FROM_SOURCES dialog. (dc087d7)
* data/collabora/coolwsd.xml: Update coolwsd.xml template. (14bac79)
2022-07-28 Daniel Teichmann
* setup-nextcloud-hpb.sh: Log systemctl command into LOGFILE.
(b0579bf)
2022-08-27 PhilProg
* Merge pull request #14 from
sunweaver/pr/tweak-50unattended-upgrades-config (42a3302)
2022-08-25 Mike Gabriel
* src/setup-unattendedupgrades.sh: Add step3. Tweak
/etc/apt/apt.conf.d/50unattended-upgrades. (bb2c311)
2022-08-23 PhilDevProg
* README_en: Fix Hetzner links (cdd6593)
* README_en: Complete english translation (a2d0f9b)
2022-08-11 Daniel
* Merge pull request #11 from sunweaver/enable-contrib (c6a60dd)
2022-08-11 PhilProg
* src/setup-collabora.sh: Enable contrib. (a7be602)
2022-08-07 Mirco
* Update README.md (dd9be9c)
* README: Add link to Wiki (d7f7f0f)
* README: Add warning because the README is only for version 1.0 and
newer (5c40376)
* README: Add full README content (6f9dea1)
2022-07-31 Mirco
* README_en: Update link to german README (8f032b8)
* README: Update link to english README (3056a5e)
* Make german README the default (de4c4e0)
* Rename README.md to README_en.md (f949ad5)
* README: Add language chooser (dd8befb)
* Create README_de.md (3c2d093)
2022-07-28 PhilDevProg
* README: Change name (58cd26b)
2022-07-28 Mirco
* Update README.md (391a162)
2022-07-26 Daniel Teichmann
* Merge branch 'dev' into 'main' (278f4d0)
* setup-nextcloud-hpb.sh: Make Letsencrypt ToS question a default-yes
question. (f9b961f)
* src/setup-collabora.sh, data/collabora/coolwsd.xml: Implement
Collabora MultiHost feature. (7c6954f)
* src/setup-collabora.sh: Fix typo. (a3fb64e)
Fixes: #16
* data/collabora/coolwsd.xml: Update config template.
Fixes: #17.
(8922f29)
* src/setup-ufw.sh: Don't open ports if the software doesn't get
installed. (4fcea56)
* src/setup-ufw.sh: Add ports for Coturn, add comments for ufw rules
and log command output into logfile. (dac537a)
2022-07-01 Daniel Teichmann
* src/setup-signaling.sh: Don't actually log secrets or passwords
(d107008)
2022-07-25 Daniel Teichmann
* Merge branch 'mr/unattendedupgrades' into 'main' (d82da06)
2022-07-21 Mike Gabriel
* settings.sh, setup-nextcloud-hpb.sh,
src/setup-unattendedupgrades.sh: Implement
unattended-upgrades. (24fe3a6)
2022-07-25 Daniel Teichmann
* Merge branch 'mr/setup-ufw' into 'main' (1134850)
2022-07-21 Mike Gabriel
* setup-nextcloud-hpb.sh, src/setup-ufw.sh: Setting up ufw firewall.
(a9bc8e5)
2022-07-25 Daniel Teichmann
* src/setup-signaling.sh: Add missing https:// prefix to backend
definition. (cc73b64)
* src/setup-signaling.sh: Fix bug: Actually list backends
comma-seperated. (7ef8ecb)
* Merge branch
'mr/assure-mscorefonts-installation-before-collabora-installation'
into 'main' (08378b5)
2022-07-21 Mike Gabriel
* src/setup-collabora.sh: Assure that mscorefonts are installed
before collabora gets installed. (a8cd3a4)
2022-07-01 Daniel Teichmann
* Merge branch 'dev' into 'main' (990a448)
* src/setup-signaling.sh: Don't log passwords but other information
can be usefull. (b54cbc8)
* src/setup-{signaling, collabora}.sh, setup-nextcloud-hpb.sh,
data/signaling/signaling-server.conf: Implement
Multi-Nextcloud domain feature. (fe51e74)
* src/setup-*.sh: Fix typo 'unattented' -> 'unattended'. (19f78c0)
* setup-nextcloud-hpb.sh: Reword CERTBOT_AGREE_TOS text. (ae2682a)
2022-06-30 Daniel Teichmann
* Merge branch 'dev' into 'main' (d8b34b8)
* src/setup-signaling.sh: Fixup of previous commit. (09fe68d)
* src/setup-signaling.sh, data/signaling/turnserver.conf,
data/signaling/coturn-certbot-deploy.sh: Fix coturn SSL
certificates. (a7b1164)
* src/setup-{collabora, nginx}.sh, data/{nginx,
collabora}/{index.html, robots.txt}: Move website related
stuff from Collabora to Nginx setup. (ab69d19)
* Merge branch 'dev' into 'main' (9c4bb8e)
* setup-nextcloud-hpb.sh: Process LOGFILE_PATH first and fix bug
where program would just exit if user pressed ESC in first
dialog. (7755b94)
* src/setup-collabora.sh: Install some dictionaries and (Microsoft)
fonts for Collabora. (1b2bf06)
Fixes: #4
* setup-nextcloud-hpb.sh, settings.sh: Ask if ssh server should be
disabled & Don't ask Letsencrypt ToS question in
unattended mode. (1fa88eb)
Fixes: #10
* setup-nextcloud-hpb.sh: Filter out http(s):// for input FQDN's.
Fixes: #13. (13afd28)
* src/setup-certbot.sh, setup-nextcloud-hpb.sh: Ask user if we should
skip letsencrypt terms of service. (20f81a5)
Fixes: #8
* settings.sh, setup-nextcloud-hpb.sh: Don't annoy user with
unnecessary dialog questions. (a8cee28)
Fixes: #9
2022-06-29 Daniel Teichmann
* src/setup-nginx.sh, setup-nextcloud-hpb.sh: Be more precise about
extra packages. (cd9a1ea)
* src/setup-signaling.sh: Don't run chmod in dry-run mode. (83dc9ee)
* src/setup-{collabora, signaling}.sh, settings.sh,
setup-nextcloud-hpb.sh: Rename NEXTCLOUD_SERVER_FQDN to
NEXTCLOUD_SERVER_FQDNS. (f9cd5b9)
* src/*, setup-nextcloud-hpb.sh: Convert files to tab indented
instead of spaces. (e755fe5)
2022-06-28 Daniel Teichmann
* Merge branch 'dev' into 'main' (6d6dca6)
* setup-nextcloud-hpb.sh: Check SHOULD_INSTALL_* before writing
arbitrary data into secrets file. (50e67a9)
* src/setup-certbot.sh: print_info & write_secrets_to_file: Output
email address(es). (85cfc6b)
* src/setup-nginx.sh: Improve print_info() (1de1e4d)
* src/setup-signaling.sh: Improve print_info & write_secrets_to_file
texts. (c4cc78a)
* settings.sh, setup-nextcloud-hpb.sh: Hint that multi email
addresses are supported. (bbcca9f)
* src/setup-certbot.sh: Fix incorrect bash syntax & move certbot
command into own function. (c7114e9)
* src/setup-certbot.sh: Use correct quoting for CERTBOT_COMMAND.
(a438ca6)
* {src/setup-certbot.sh, setup-nextcloud-hpb.sh, settings.sh}: Ask
email address of user. (4435512)
* src/setup-certbot.sh: Log Certbot arguments. (c9b82e4)
2022-06-27 Daniel Teichmann
* src/setup-signaling.sh: Fix copy&paste accident. (af1c996)
* src/setup-signaling.sh: Create directory bevor trying to write in
it. (12135f3)
* {setup-nextcloud-hpb.sh, src/setup-{collabora, signaling,
nginx}.sh}: Move service restarts into main file.
(3eed459)
* src/setup-signaling.sh: Fix is_dry_run checks. (8a9188d)
* {src/setup-signaling.sh, data/signaling/{turnserver.conf,
coturn-certbot-deploy.sh}}: Make SSL certs available for
coturn. (c2aefa7)
2022-06-24 Daniel Teichmann
* setup-nextcloud-hpb.sh: Override settings file in non-unattended
mode. (fd72579)
* src/setup-nginx.sh: Rephrase print_info text. (30415f9)
* {setup-nextcloud-hpb.sh, src/setup*.sh}: Move SHOULD_INSTALL* check
into main function. (8faf689)
* {setup-nextcloud-hpb.sh, src/setup*.sh}: Improve print_info text.
(5cf6fe5)
* src/setup-certbot.sh: Handle a bug where Nginx is already
configured but Certbot not. (be54d21)
* settings.sh: Adjust default URL's to match dialogs. (9eef89a)
* src/setup-certbot.sh: Actually log Certbot output + Put small text
into print_info. (2c2b150)
* setup-nextcloud-hpb.sh: Swap Nginx and Certbot installation order.
(6b08b83)
* setup-nextcloud-hpb.sh: Rephrase dialog text. (aea58e8)
* setup-nextcloud-hpb.sh: Remove default SSL cert file paths + Adjust
dialog text. (7837465)
* data/nginx/nextcloud-hpb.conf: Fix Nginx config (including
non-existing acme-tiny config). (f3973ac)
* data/nginx/nextcloud-hpb.conf: Fix Nginx config (duplicate
server_tokens). (62d9b09)
* src/setup-signaling.sh: Make sure ssl-cert package is installed.
(a0080e0)
* data/nginx/nextcloud-hpb.conf: Harden Nginx server. (e544ffc)
* {src/setup-nginx.sh, data/nginx/nextcloud-hpb.conf}: Rename
HOST_FQDN to SERVER_FQDN. (4b16e30)
* src/setup-nginx.sh: Certbot specify domain in unattended mode.
(05172f2)
* src/setup-nginx.sh: Use certbot non-interactive mode if unattended
install. (b32ee9e)