-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreport.php
More file actions
1167 lines (968 loc) · 36.8 KB
/
report.php
File metadata and controls
1167 lines (968 loc) · 36.8 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
<?php
include("header.php");
?>
<section class="py-5 heading linear-gradient" id="">
<div class="container text-left">
<div class="col-md-6">
<div class="logo-separator left">
<img src="assets/images/DSI_favicon-white.svg" class="" alt="">
</div>
<h1 class="">How Countries
Compare in Digital
Independence</h1>
</div>
</div>
</section>
<section class="py-5" id="">
<div class="container text-left">
<div class="row mb-5" id="">
<div class="col-md-3"><span class="heading-number">01</span></div>
<div class="col-md-9">
<h2>Around the world, discussions about
digital sovereignty are intensifying.</h2>
</div>
</div>
<div class="row mb-5">
<div class="col-md-6">
<p>Governments, institutions, companies and civil society
are becoming increasingly aware of the importance of
controlling their own digital infrastructure.</p>
<p>From concerns about data protection and vendor lockin
to questions of political autonomy, the topic has
moved from niche circles to mainstream policy
debates.</p>
</div>
<div class="col-md-6">
<p>Yet while the debate is global, the actual state of digital
sovereignty varies widely between countries. Policies
may exist, but how much infrastructure is really
running locally, instead of the cloud? What choices do
people make? And how does this compare to the
policy of the public sector?</p>
<p>
To address this question, we developed the Digital
Sovereignty Index DSI a simple metric to illustrate
how much self hosted collaboration applications are
actively used across over 50 countries. It represents
the relative amount of deployments of self-hosted
productivity & collaboration tools per 100,000 citizens,
compared to other countries.
</p>
</div>
</div>
<div class="row">
<div class="col-md-12">
<ul class="top_four diagonal_design">
<li><span class="title">Finland</span> <div class="score">64.5</div></li>
<li><span class="title">Germany</span> <div class="score">53.8</div></li>
<li><span class="title">Netherlands</span> <div class="score">36.3</div></li>
<li><span class="title">France</span> <div class="score">25.1</div></li>
</ul>
</div>
</div>
</div>
</section>
<section class="py-5" id="">
<div class="container text-left">
<div class="row mb-5" id="">
<div class="col-md-3"><span class="heading-number">02</span></div>
<div class="col-md-9">
<h2>Uneven progress and surprising gaps in
digital sovereignty across Europe and
beyond</h2>
</div>
</div>
<div class="row mb-5">
<div class="col-md-6">
<p>The results of the first Digital Sovereignty Index show
significant differences in the adoption of self-hosted
infrastructure across Europe and beyond.</p>
</div>
<div class="col-md-6">
While the public debate around digital sovereignty has
gained momentum in recent years, actual usage of
sovereign digital tools remains fragmented – and in
many places surprisingly low.
</div>
</div>
<div class="row">
<div class="col-lg-2"></div>
<div class="col-lg-8 score-cards">
<div class="score-card usa linear-gradient rounded">
<span class="score">14.8</span>
<span class="title">United States DSI Score</span>
</div>
<div class="score-card europe linear-gradient rounded">
<span class="score">16.3</span>
<span class="title">Average EU DSI Score</span>
</div>
</div>
<div class="col-lg-2"></div>
</div>
</div>
</section>
<section class="py-5" id="">
<div class="container text-left">
<div class="row mb-5" id="">
<div class="col-md-3"><span class="heading-number">03</span></div>
<div class="col-md-6">
<h2>How to read the numbers</h2>
</div>
<div class="col-md-3"></div>
</div>
<div class="row mb-5">
<div class="col-md-6">
<h5 class="mb-3">The Digital Sovereignty Index ranks countries based
on the relative presence of self-hosted tools across
key application areas.</h5>
<p>
The scores are comparative, not absolute – a high
score indicates stronger relative deployment than in
other countries, but not necessarily broad adoption.
The data reflects visible tool usage across society,
particularly among individuals and small organisations.
</p>
</div>
<div class="col-md-6">
<p>
The index reflects the number of servers, not their size
― making it more indicative of what small companies
and private individuals use, rather than the policies of
large corporations or governments.
</p>
<p>
Studies show that most government agencies in
Europe are completely dependent on Microsoft,
Google and other big tech solutions. But the scores
show that in several European countries, civil society
makes different choices than their government does,
opting for hosting large numbers of servers running
project management tools, file store and exchange
platforms, groupware or video or chat applications.
</p>
<p>
In Germany, for example, the relatively high score
suggests that sovereign tools are more commonly
used in the general population than in some parts of
the public sector. States like Schleswig-Holstein, which
are introducing self-hosted, open source
infrastructure, may therefore be more closely aligned
with the choices than those using Microsoft 365.
</p>
</div>
</div>
<div class="row table-count">
<div class="col-md-4">
<table>
<tbody>
<tr><td>🇫🇮 Finland</td><td>64.50</td></tr>
<tr><td>🇩🇪 Germany</td><td>53.85</td></tr>
<tr><td>🇳🇱 Netherlands</td><td>36.32</td></tr>
<tr><td>🇫🇷 France</td><td>25.10</td></tr>
<tr><td>🇨🇭 Switzerland</td><td>23.32</td></tr>
<tr><td>🇮🇸 Iceland</td><td>22.58</td></tr>
<tr><td>🇮🇪 Ireland</td><td>22.03</td></tr>
<tr><td>🇦🇹 Austria</td><td>20.23</td></tr>
<tr><td>🇪🇪 Estonia</td><td>18.40</td></tr>
<tr><td>🇱🇺 Luxembourg</td><td>17.72</td></tr>
<tr><td>🇱🇻 Latvia</td><td>16.63</td></tr>
<tr><td>🇱🇹 Lithuania</td><td>16.10</td></tr>
<tr><td>🇨🇦 Canada</td><td>14.94</td></tr>
<tr><td>🇺🇸 United States</td><td>14.88</td></tr>
<tr><td>🇸🇪 Sweden</td><td>14.27</td></tr>
<tr><td>🇭🇺 Hungary</td><td>13.38</td></tr>
<tr><td>🇸🇮 Slovenia</td><td>13.33</td></tr>
<tr><td>🇨🇿 Czechia</td><td>13.10</td></tr>
<tr><td>🇧🇬 Bulgaria</td><td>12.93</td></tr>
</tbody>
</table>
</div>
<div class="col-md-4">
<table>
<tbody>
<tr><td>🇦🇺 Australia</td><td>10.20</td></tr>
<tr><td>🇬🇧 U. Kingdom</td><td>9.21</td></tr>
<tr><td>🇹🇼 Taiwan</td><td>8.49</td></tr>
<tr><td>🇷🇴 Romania</td><td>7.66</td></tr>
<tr><td>🇵🇱 Poland</td><td>7.55</td></tr>
<tr><td>🇭🇷 Croatia</td><td>7.25</td></tr>
<tr><td>🇧🇪 Belgium</td><td>7.15</td></tr>
<tr><td>🇪🇸 Spain</td><td>7.01</td></tr>
<tr><td>🇷🇺 Russia</td><td>6.95</td></tr>
<tr><td>🇩🇰 Denmark</td><td>6.50</td></tr>
<tr><td>🇮🇹 Italy</td><td>6.49</td></tr>
<tr><td>🇳🇴 Norway</td><td>6.35</td></tr>
<tr><td>🇸🇰 Slovakia</td><td>5.88</td></tr>
<tr><td>🇶🇦 Qatar</td><td>5.71</td></tr>
<tr><td>🇷🇸 Serbia</td><td>5.44</td></tr>
<tr><td>🇨🇾 Cyprus</td><td>5.25</td></tr>
<tr><td>🇯🇵 Japan</td><td>5.17</td></tr>
<tr><td>🇰🇷 South Korea</td><td>5.05</td></tr>
<tr><td>🇬🇷 Greece</td><td>4.81</td></tr>
</tbody>
</table>
</div>
<div class="col-md-4">
<table>
<tbody>
<tr><td>🇵🇹 Portugal</td><td>4.33</td></tr>
<tr><td>🇳🇿 New Zealand</td><td>4.23</td></tr>
<tr><td>🇮🇱 Israel</td><td>3.71</td></tr>
<tr><td>🇲🇹 Malta</td><td>3.38</td></tr>
<tr><td>🇺🇦 Ukraine</td><td>2.83</td></tr>
<tr><td>🇦🇷 Argentina</td><td>2.57</td></tr>
<tr><td>🇧🇷 Brazil</td><td>2.44</td></tr>
<tr><td>🇹🇷 Turkey</td><td>2.26</td></tr>
<tr><td>🇿🇦 South Africa</td><td>1.79</td></tr>
<tr><td>🇮🇩 Indonesia</td><td>1.07</td></tr>
<tr><td>🇲🇦 Morocco</td><td>0.94</td></tr>
<tr><td>🇸🇦 Saudi Arabia</td><td>0.87</td></tr>
<tr><td>🇲🇽 Mexico</td><td>0.57</td></tr>
<tr><td>🇹🇳 Tunisia</td><td>0.55</td></tr>
<tr><td>🇯🇲 Jamaica</td><td>0.51</td></tr>
<tr><td>🇮🇳 India</td><td>0.43</td></tr>
<tr><td>🇬🇱 Greenland</td><td>0.36</td></tr>
<tr><td>🇪🇬 Egypt</td><td>0.12</td></tr>
<tr><td>🇳🇬 Nigeria</td><td>0.03</td></tr>
</tbody>
</table>
</div>
</div>
</div>
</section>
<section class="blackBG py-5">
<div class="container">
<div class="row mb-5">
<div class="col-12">
<h2>Key Findings</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<ul class="key-findings-list">
<li><span class="line"></span>
Finland 64.5) leads the overall index with a strong
presence in nearly all categories compared to the
other countries.
</li>
<li><span class="line"></span>
Germany (53.8) is number 2 ― being first in data
storage application servers in particular.
</li>
<li><span class="line"></span>
France (25.1), however, lags behind significantly with
weak adoption of self-hosted tools in collaborative
areas.
</li>
<li><span class="line"></span>
Spain (7.0) and Italy (6.4) score very low
(EU average: 16.3). Neither country has a strong focus
on sovereignty.
</li>
<li><span class="line"></span>The Netherlands, arguably far more digitalized than
Germany, still lags behind in the DSI.</li>
<li><span class="line"></span>
The baltic states, Latvia (16.6) Estonia (18.4),
Lithuania (16.0) are surprisingly only in the midfield.
</li>
<li><span class="line"></span>
The DSI indicates that Swiss organizations and
individuals (23.3) are embracing sovereign software
more widely than many expect.</li>
<li><span class="line"></span>Austria (20.2) also ranks above the EU average (16.3)
for digital sovereignty.</li>
</ul>
</div>
</div>
</div>
</section>
<section class="py-5" id="">
<div class="container">
<div class="row mb-5" id="">
<div class="col-md-3"><span class="heading-number">04</span></div>
<div class="col-md-9">
<h2>Per Country Analysis</h2>
</div>
</div>
<div class="row mb-4">
<div class="col-md-12">
<img src="assets/images/Finland.jpg" alt="Helsinki, Martti Salmi">
<div class="img-credit text-right">Helsinki, Martti Salmi</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="line"></div>
</div>
</div>
<div class="row mb-5">
<div class="col-md-4">
<h4>
Finland leads with
consistency
<div>🇫🇮 </div>
</h4>
</div>
<div class="col-md-4">
Finland 64.5) leads the overall
index with a strong presence in
nearly all categories compared to
the other countries.
</div>
<div class="col-md-4">
Its strengths lie in sovereign file
storage, self-hosting infrastructure
and groupware, which includes
software that allows individuals and
organizations to host essential
services like email on their own
infrastructure, rather than relying
on external cloud providers.
</div>
</div>
<div class="row mb-5">
<div class="col-md-12">
<img src="assets/images/berlin.jpg" alt="Berlin, Kranich17">
<div class="text-right img-credit">Berlin, Kranich17</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="line"></div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<h4>
Germany follows,
with file storage
and selfhosting
<div>🇩🇪 </div>
</h4>
</div>
<div class="col-md-4">
<p>
Germany ranks second in the Digital
Sovereignty Index with a score of
53.85, above the EU average of 16.
</p>
<p>
The strong performance is largely
driven by the use of communication
tools and data storage.
</p>
</div>
<div class="col-md-4">
<p>
Across categories, Germany shows
one of the most balanced and
consistent profiles, coming in just
behind Finland but well ahead of
the rest of the field.
</p>
<p>
Given the known dependence of
the public sector on big tech, it is
interesting to note that so many
citizens and organizations choose
self-hosted solutions.
</p>
</div>
</div>
</div>
</section>
<section class="py-5 blackBG" id="">
<div class="container">
<div class="row mb-5">
<div class="col-md-4">
<h3>Rankings by category</h3>
</div>
<div class="col-md-4">
<h5 class="mb-3">Sovereign Data:</h5>
<div class="mb-3 d-flex">
<span class="arrow">↑</span>
Germany 67.2; Finland 54.9;
Switzerland 37.4</div>
<div class="mb-3 d-flex">
<span class="arrow">↓</span>
Greenland 0.1, Egypt 0,
Nigeria 0</div>
</div>
<div class="col-md-4">
<div class="col-md-12">
<h5 class="mb-3">Sovereign Groupware:</h5>
<div class="mb-3 d-flex">
<span class="arrow">↑</span>
Finland 54, Germany 50.4,
Austria 34.9</div>
<div class="mb-3 d-flex">
<span class="arrow">↓</span>
Morocco 0, Egypt 0,
Nigeria 0</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<h5 class="mb-3">Sovereign Communication:</h5>
<div class="mb-3 d-flex">
<span class="arrow">↑</span>
Finland 83.7, Germany 60.8,
Iceland 29.8</div>
<div class=" d-flex">
<span class="arrow">↓</span>
Nigeria 0, Egypt 0,
Greenland 0</div>
</div>
<div class="col-md-4">
<h5 class="mb-3">Self-hosting tech:</h5>
<div class="d-flex">
<span class="arrow">↑</span>
Finland 49.6, Germany 47.8,
Netherlands 46.0</div>
<div class="d-flex">
<span class="arrow">↓</span>
Egypt 0.1, Nigeria 0,
Greenland 0</div>
</div>
<div class="col-md-4">
<h5 class="mb-3">Sovereign Projects:</h5>
<div class="">
<span class="arrow">↑</span>
Finland 86.9, Germany 58.5,
Netherlands 38.6</div>
<div class="">
<span class="arrow">↓</span>
Morocco 0.1, Nigeria 0,
Greenland 0</div>
</div>
</div>
</div>
</section>
<section class="py-5">
<div class="container">
<div class="row mb-5">
<div class="col-md-4">
<h5>
<div class="line"></div>
The Netherlands, France and
Iceland complete the top five
<div>🇳🇱 🇫🇷 🇮🇸</div>
</h5>
</div>
<div class="col-md-8 two_columns">
<p>The Netherlands ranks third with a
score of 36.32, marking a steep
drop from Germany’s 53.85 and
highlighting the significant gap
between the top two and the rest of
the field.</p>
<p>There is of course an impact of
digitalization in general. But the
Netherlands, which is arguably far
more digitalized than Germany, still
lags behind in the DSI.</p>
<p>
This would strongly suggest that
business and citizens in the
Netherlands have focused more on
public cloud services than hosting
their own collaboration and data
storage servers.
</p>
<p>
France follows in fourth place with
just 25.1 points ― closer to the EU
average of 16.3 than to the top tier.
</p>
<p>
Its score is primarily driven by the
availability of self-hosting
infrastructure such as Plex and
Webmin, while adoption in more
collaborative categories is weak:
France ranks only eighth for both
file storage and project
management, and eleventh for
communication tools.
</p>
<p>
Iceland completes the top five with
22.58 points.
</p>
</div>
</div>
<!-- Nordics -->
<div class="row mb-5">
<div class="col-md-4">
<h5>
<span class="line"></span>
Mixed results across the Nordics
<div> 🇫🇮 🇸🇪 🇩🇰 🇳🇴</div>
</h5>
</div>
<div class="col-md-8 two_columns">
While Finland leads the Digital
Sovereignty Index with a strong
score of 64.5, its Nordic neighbours
fall far behind. Sweden ranks only
15th with 14.27 points ― just below
the EU average ― while Denmark
6.50) and Norway 6.35) land near
the bottom of the list.
The stark contrast within this
economically and digitally advanced
region highlights that digital
sovereignty depends not only on
infrastructure and innovation, but
also on political prioritization and
concrete implementation.
</div>
</div>
<!-- Baltics -->
<div class="row mb-5">
<div class="col-md-4">
<h5>
<span class="line"></span>
Baltic states fall short despite
digital government leadership
<div>🇱🇻 🇪🇪 🇱🇹</div>
</h5>
</div>
<div class="col-md-8 two_columns">
Latvia 16.63, Estonia 18.4) and
Lithuania 16.1) are known for their
advanced e-government
infrastructure and are often seen as
digital pioneers. Yet when it comes
to digital sovereignty, all three
countries remain in the midfield.
Their scores cluster around the EU
average of 16.3, suggesting that a
strong digital public sector does
not automatically translate into
broad adoption of self-hosted or
sovereign digital tools across
society.
</div>
</div>
<!-- Nordics -->
<div class="row mb-4">
<div class="col-md-4">
<h5>
<div class="line"></div>
Spain and Italy show surprisingly low adoption
<div>🇮🇹 🇪🇸</div>
</h5>
</div>
<div class="col-md-8 two_columns">
With scores of just 7.01 and 6.49
respectively, Spain and Italy fall
well below the EU average of 16.3
and rank among the lowestperforming
countries in the Digital
Sovereignty Index.
Despite some visible national
initiatives and political rhetoric
around digital sovereignty, the
actual uptake of sovereign tools
remains minimal across nearly all
categories. The gap between
ambition and implementation is
striking – Spain, for instance,
recently opted to store judicial
wiretaps on Huawei servers, raising
further questions about its strategic
priorities.
</div>
</div>
</div>
</section>
<section class="py-5">
<div class="container">
<div class="row">
<div class="col-md-6">
<figure class="testimonial">
<div class="testimonial-img blueOverlay">
<img src="assets/images/Prof-Harald-Wehnes.jpg" alt="" class="testimonial-img">
</div>
<div class="testimonial-text">
<blockquote>
<p>
I am very pleased that the
evaluation has shown that a aboveaverage
number of open source
products are used on local servers
in Germany. This is also a great
source of knowledge and
experience and demonstrates a
good awareness of digital
sovereignty.
Public administration is heavily
dependent on products from digital
monopolies and runs the risk of
paying exorbitant prices with
taxpayers’ money in the long term.
The EU's service deficit for
software licenses, cloud services,
and other costs with the U.S.
reached an alarming record level of
€148 billion last year. A digital
"Zeitenwende" is urgently needed.
</p>
</blockquote>
<figcaption>
<div class="testimonial-info">
<strong>Harald Wehnes</strong>
<span>Würzburg computer science professor</span>
</div>
</figcaption>
</div>
</figure>
</div>
<div class="col-md-6">
<figure class="testimonial">
<div class="testimonial-img blueOverlay">
<img src="assets/images/Pernille-Tranberg.jpg" alt="" class="">
</div>
<div class="testimonial-text">
<blockquote>
<p>
I believe that Europe should work
towards digital sovereignty and
keep up with our data privacy
values and rules.
Open standards and open source
technologies are also becoming
increasingly important in this
context, and are essential for a
resilient digital landscape.
</p>
</blockquote>
<figcaption>
<div class="testimonial-info">
<strong>Pernille Tranberg</strong>
<span>Independent advisor in data and AI ethics</span>
</div>
</figcaption>
</div>
</figure>
</div>
</div>
</div>
</section>
<section class="py-5" id="">
<div class="container">
<div class="row mb-4">
<div class="col-md-12">
<img src="assets/images/washington.jpg" alt="">
<div class="text-right img-credit">Washington, Connor Gan</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="line"></div>
</div>
</div>
<div class="row mb-5">
<div class="col-md-4">
<h3>United States: limited adoption
</h3>
<span>especially in groupware</span>
<div>🇺🇸</div>
</div>
<div class="col-md-8 two_columns">
<p>
With a score of just 14.88, the
United States is below the EU
average.
</p>
<p>
Adoption of self-hosted tools is
only moderate across most
categories and particularly weak in
groupware, including essential
services likeemail and calendars.
</p>
<p>
The heavy reliance on centralized
cloud platforms continues to
undermine the broader use of selfhosted,
privacy-preserving
infrastructure.
</p>
</div>
</div>
</div>
</section>
<section class="py-5 blackBG" id="">
<div class="container text-left">
<div class="row mb-5" id="">
<div class="col-md-3"><span class="heading-number">05</span></div>
<div class="col-md-9">
<h2>Methodology and Limitations</h2>
</div>
</div>
<div class="mb-5"></div>
<div class="row">
<div class="col-md-6">
<p>To generate the Digital Sovereignty Index, we relied on
data from Shodan.io, a search engine that scans the
internet for publicly accessible servers. For each of the
applications, we searched for country-specific IP
addresses that visibly run these tools. This was based
on identifiable patterns in returned HTML or other
metadata.</p>
<p>We then adjusted the raw server counts by population
size, calculating the number of observed instances per
100,000 citizens. To avoid skew from tools with very
high or low absolute adoption, we normalized each
product score across all countries and scaled it to a 0
100 range. A country’s overall DSI is the average of its
normalized scores across all products. We also
aggregated scores by product category.</p>
<p>
Of course, there are limitations. The data represents
publicly visible servers. Any deployment behind a
proxy or firewall may go undetected. Some tools are
harder to identify reliably than others. And while a high
number of servers suggests broad adoption, it does
not reflect data volume, user numbers, or ownership
structure.
</p>
</div>
<div class="col-md-6">
<p>
In short, the DSI offers a comparative view of
observable self hosted deployments across borders. It
does not claim to measure full digital sovereignty, but it
highlights where real infrastructure exists and where
momentum is building.
</p>
<p>
We welcome community feedback to refine the index
over time - including improved search definitions and
suggestions for additional tools to include in future
iterations.
</p>
<figure class="testimonial">
<div class="testimonial-img blueOverlay">
<img src="assets/images/Sebastian-Raible-APELL.jpg" alt="" class="">
</div>
<div class="testimonial-text">
<blockquote>
<p>
The goal of increasing technological
sovereignty is to reduce dependencies,
and increase control and security for
personal data, as well as businesses'
trade secrets. But more so, we need
open technological sovereignty, as only
with Open Source can we allow the
public and the private sector to create
and innovate sustainably in Europe. We
welcome the Digital Sovereignty Index,
as it shows how the European countries
are doing in this regard.
</p>
</blockquote>
<figcaption>
<div class="testimonial-info">
<strong>Sebastian Raible</strong>
<span>Director EU relations for the European Open
Source Business Association APELL in Brussels</span>
</div>
</figcaption>
</div>
</figure>
</div>
</div>
</div>
</section>
<section class="py-5" id=""></section>
<section class="py-5 blackBG" id="">
<div class="container text-left">
<div class="row mb-5" id="">
<div class="col-md-3"><span class="heading-number">06</span></div>
<div class="col-md-9">
<h2 class="mb-3">Products</h2>
<h5 class="mb-3">
The Digital Sovereignty Index tracks tools that reflect
self-hosted and sovereign alternatives to mainstream
cloud software.
</h5>
<p>
∗ Total divided by number of tools
</p>
</div>
</div>
<div class="row mb-5">
<div class="col-md-3"></div>
<div class="col-md-9">
<div class="row">
<div class="col-md-6">
<div class="line"></div>
<h4>Project Management</h4>
<h6>Tools for task planning, issue
tracking and team coordination.</h6>
<p>Taiga, Redmine, OpenProject, Xwiki, Wekan,
Planka</p>
</div>
<div class="col-md-6">
<div class="line"></div>
<h4>Chats & Calls</h4>
<h6>Real-time communication tools
such as messengers and video
conferencing software.</h6>
<p>
Big Blue Button, Jitsi Meet, Mumble, Matrix/
Element, Mattermost, Rocket.chat, Zimbra,
Nextcloud Talk
</p>
</div>
</div>
</div>
</div>
<div class="row mb-5">
<div class="col-md-3"></div>
<div class="col-md-9">
<div class="row">
<div class="col-md-6">
<div class="line"></div>
<h4>Groupware</h4>
<h6>Integrated solutions for email,
calendar, and contacts, forming the
backbone of digital offices.</h6>
<p>Roundcube, Zimbra, Mailcow, SOGo, Kopano,
Nextcloud Groupware</p>
</div>
<div class="col-md-6">
<div class="line"></div>
<h4>File Storage & Collaboration</h4>