Welcome to mirror list, hosted at ThFree Co, Russian Federation.

providers.json « assets - github.com/nextcloud/nextcloud.com.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bc946d2c1dc8cce46896d90bb266886e11b89df2 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
[
      {
         "title":"WK-IT",
         "url":"https:\/\/www.wk-it.net\/#nextcloud",
         "flags":[
            "de"
         ],
         "freeplans":false,
		 "supports":"both",
         "specializes":[
            "Nextcloud gehostet in Eichenzell / Hessen. Von Einzelaccounts bis hin zu eigenen Instanzen mit garantierter exklusiver Bandbreite und Ressourcen."
         ],
         "imagename":"wkit.png"
      },
	{
         "title":"HKN GmbH",
         "url":"https:\/\/www.hkn.de\/nextcloud-server.php",
         "flags":[
            "de",
            "all"
         ],
         "freeplans":false,
		 "supports":"organization",
         "specializes":[
            "We are a specialist for fully managed Nextcloud-Servers hosted in Germany with german privacy protection."
         ],
         "imagename":"hkn.jpg"
      },
	{
         "title":"Hostiso",
         "url":"https:\/\/hostiso.com\/nextcloud-hosting",
         "flags":[
            "us",
            "all"
         ],
         "freeplans":true,
		 "supports":"both",
         "specializes":[
            "Hostiso is all in one solution for your Nextcloud, from free to Enterprise offering, with included free support for Nextcloud, setup, install!"
         ],
         "imagename":"hostiso.png"
      },
	{
         "title":"OwnCube e.U.",
         "url":"https:\/\/owncube.com",
         "flags":[
            "de",
            "all"
         ],
         "freeplans":true,
		 "supports":"both",
         "specializes":[
            "OwnCube - open source cloud hosting since 2012. Nextcloud Single and Admin, own apps, design, users, ... More than 30 data center locations worldwide."
         ],
         "imagename":"owncube.png"
      },
	{
         "title":"Kinamo SA",
         "url":"https:\/\/www.kinamo.be\/en\/cloud\/storage",
         "flags":[
            "nl",
            "fr",
            "gb",
            "be"
         ],
         "freeplans":false,
		 "supports":"both",
         "specializes":[
            "Kinamo offers cloud storage solutions based on NextCloud, both on a per user base as well as a cloud server instances with business support."
         ],
         "imagename":"kinamo.png"
      },
	{
         "title":"T&M Hansson IT AB",
         "url":"https:\/\/shop.hanssonit.se\/product\/nextcloud-hosting",
         "flags":[
            "all",
            "eu",
            "se"
         ],
         "freeplans":false,
		 "supports":"both",
         "specializes":[
            "Swedish-hosted virtual machine images with Nextcloud pre-installed and various service options available for secure and easy file sync and share!"
         ],
         "imagename":"techandme.png"
      },
	{
         "title":"Service Metric",
         "url":"https:\/\/www.servicemetric.com\/portal\/link.php?id=1",
         "flags":[
            "us"
         ],
         "freeplans":false,
		 "supports":"both",
         "specializes":[
            "Service Metric offers per user cloud storage to enterprise solutions powered by Nextcloud on fully managed high availability infrastructure in the US."
         ],
         "imagename":"ServiceMetric.png"
      },
	{
         "title":"WEB-SHOP-HOSTING",
         "url":"https:\/\/www.web-shop-hosting.de\/nextcloud-hosting",
         "flags":[
            "de",
            "gb",
            "ru",
            "pl",
            "ua",
            "lt"
         ],
         "freeplans":false,
		 "supports":"both",
         "specializes":[
            "In Germany, Berlin hosted NextCloud optimized solutions for customers and organizations."
         ],
         "imagename":"web-shop-hosting.png"
      },
	{
         "title":"Zaclys",
         "url":"https:\/\/cloud.zaclys.com",
         "flags":[
            "fr",
            "us",
            "es",
            "de",
            "it",
            "ru",
            "pl"
         ],
         "freeplans":true,
		 "supports":"both",
         "specializes":[
            "Zaclys is a French organization, respectful of privacy. We offer free and alternative Cloud solutions for all. Ready to use or dedicated server."
         ],
         "imagename":"zaclys.png"
      },
	{
         "title":"J.I.T. Creatives",
         "url":"https:\/\/www.jit-creatives.de\/products",
         "flags":[
            "de",
            "eu"
         ],
         "freeplans":false,
		 "supports":"both",
         "specializes":[
            "We offer mailaccounts with Nextcloud-based Calendar, Contacts, Photos, News and online editing of documents. Hosted in Germany."
         ],
         "imagename":"jit.png"
      },
	{
         "title":"RoseHosting",
         "url":"https:\/\/rosehosting.com\/nextcloud-hosting.html",
         "flags":[
            "us",
            "gb",
            "ca",
            "de",
            "all"
         ],
         "freeplans":false,
		 "supports":"both",
         "specializes":[
            "We offer managed Linux VPS with free 24/7 support. We will install and configure Nextcloud and any other app for you for free. Free migrations included."
         ],
         "imagename":"rosehosting.png"
      },
	{
         "title":"woelkli Cloud Storage",
         "url":"https:\/\/woelkli.com/",
         "flags":[
            "ch",
            "fr",
            "at",
            "de",
            "gb",
            "eu"
         ],
         "freeplans":true,
		 "supports":"both",
         "specializes":[
            "wölkli lives on secure Swiss servers and offers encrypted cloud storage for everyone; from free accounts to full-featured private cloud installations."
         ],
         "imagename":"woelkli.png"
      },
	{
         "title":"CW-Film - HomeCloud",
         "url":"http:\/\/www.cw-film.com\/homecloud",
         "flags":[
            "de"
         ],
         "freeplans":false,
		 "supports":"both",
         "specializes":[
            "It is not a cloudservice! We offer the whole server, fully personalized for your business or home office. Homecloud - a small and fast solution!"
         ],
         "imagename":"homecloud.jpg"
      },
	{
         "title":"Saas Web Internet Solutions GmbH",
         "url":"https:\/\/www.saasweb.net\/auto\/managed-hosting\/nextcloud",
         "flags":[
            "de",
            "fr",
            "all"
         ],
         "freeplans":false,
		 "supports":"organization",
         "specializes":[
            "Managed Nextcloud for your business. Store and share large files easily. SaaS Web manages the Nextcloud environment in all technical aspects."
         ],
         "imagename":"saasweb.png"
      },
	{
         "title":"nimmerland",
         "url":"https:\/\/nimmerland.berlin",
         "flags":[
            "de",
            "eu"
         ],
         "freeplans":false,
		 "supports":"both",
         "specializes":[
            "Nimmerland plans, hosts and supervises cloud ins tallations for small businesses since 2013. Natural Power. Server location Berlin. Low prices for private customers."
         ],
         "imagename":"nimmerland.png"
      },
	{
         "title":"OwnDrive",
         "url":"https:\/\/owndrive.com",
         "flags":[
            "no",
            "se",
            "dk",
            "eu",
            "all"
         ],
         "freeplans":true,
		 "supports":"both",
         "specializes":[
            "Security and privacy oriented cloud storage service provider based in Europe with headquarters in Norway."
         ],
         "imagename":"owndrive.png"
      },
	{
         "title":"K and T Host",
         "url":"https:\/\/www.knthost.com\/nextcloud-hosting",
         "flags":[
            "us",
            "ca",
            "cl",
            "ar",
            "mx"
         ],
         "freeplans":false,
		 "supports":"both",
         "specializes":[
            "We offer scalable Nextcloud hosting on a clustered infrastructure with compressed data storage and unmetered bandwidth. Free trial and free setup."
         ],
         "imagename":"kandthost.png"
      },
	{
         "title":"Pixel X e.K.",
         "url":"https:\/\/www.pixelx.de/nextcloud.html",
         "flags":[
            "de",
            "eu"
         ],
         "freeplans":true,
		 "supports":"both",
         "specializes":[
            "Hosting Solutions for your Nextcloud, from free to middle SaaS installations (2-200GB) with free support to scalable Enterprise Cloud Containers."
         ],
         "imagename":"pixelx.png"
      },
	{
         "title":"Sendin B.V.",
         "url":"https:\/\/www.sendin.nl",
         "flags":[
            "nl"
         ],
         "freeplans":false,
		 "supports":"both",
         "specializes":[
            "Sendin offers managed Nextcloud hosting on Dutch servers. Our enterprise app supports file distribution, paperless meetings and project management."
         ],
         "imagename":"sendin.png"
      },
	{
         "title":"KLE-Hosting GbR",
         "url":"https:\/\/www.kle-hosting.de\/klecloud",
         "flags":[
            "de"
         ],
         "freeplans":false,
		 "supports":"both",
         "specializes":[
            "Die eigene Cloud für Privat und Firmen mit höchster Datensicherheit und bester Leistung. Nutze jetzt die Vorteile der KLE-Cloud-Storage."
         ],
         "imagename":"klecloud.png"
      },
	{
         "title":"oCloud.de",
         "url":"https:\/\/next.ocloud.de\/products.php",
         "flags":[
            "de",
            "at",
            "ch",
            "gb",
            "us",
            "all"
         ],
         "freeplans":true,
		 "supports":"both",
         "specializes":[
            "oCloud.de bietet die Original Nextcloud demnaechst auch mit Dokumentenverwaltung an."
         ],
         "imagename":"ocloud.png"
      },
    {
         "title":"Portknox.net",
         "url":"https:\/\/portknox.net",
         "flags":[
            "de",
            "eu",
            "all"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "Nextcloud hosting with love from Munich/Germany. Managed, secure & specialised. 100% admin accounts, no shared instances."
         ],
         "imagename":"portknox.png"
      },
    {
         "title":"rackSPEED GmbH",
         "url":"https:\/\/rackspeed.de\/nextcloud-hosting\/",
         "flags":[
            "de",
            "eu",
            "all"
         ],
         "freeplans":false,
         "supports":"organization",
         "specializes":[
            "We offer German-hosted Nextcloud hosting and dedicated servers with daily off-site backup. All services are protected by strict german privacy law."
         ],
         "imagename":"rackspeed.png"
      },
    {
         "title":"Webo Hosting",
         "url":"https:\/\/webo.hosting\/en\/webo-cloud-en",
         "flags":[
            "si",
            "eu",
            "all"
         ],
         "freeplans":true,
         "supports":"both",
         "specializes":[
            "We offer Nextcloud as SaaS solution for home and business use (also free plan) or as VPS. All plans include daily off-site backups and 24/7 support."
         ],
         "imagename":"webo.png"
      },
    {
         "title":"eqipe GmbH",
         "url":"https:\/\/eqipe.ch\/nextcloud\/",
         "flags":[
            "ch",
            "de",
            "au",
            "eu"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "Professional Nextcloud hosting in Switzerland. We provide a high-performance server infrastructure, secure backup and personal helpdesk and support."
         ],
         "imagename":"equipe.png"
      },
    {
         "title":"JABA e.K.",
         "url":"https:\/\/www.jaba.hosting/owncloud/",
         "flags":[
            "de",
            "at",
            "ch",
            "eu"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "Die Webhosting Firma JABA e.K. bietet ihnen eine eigene Cloud für Ihre Daten mit schnellen Servern und maximale Sicherheit für privat oder Firmen!"
         ],
         "imagename":"jaba.png"
      },
    {
         "title":"NbIServ",
         "url":"https:\/\/www.nbiserv.de\/de\/shop\/cloud",
         "flags":[
            "de",
            "gb",
            "ch",
            "at"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "Nextcloud Hosting im eigenen Rechenzentrum in Deutschland (Thüringen nähe Gera). Gern erstellen wir auch individuelle Angebote bis hin zum Cluster."
         ],
         "imagename":"nbi.png"
      },
    {
         "title":"RB Media Group GmbH",
         "url":"https:\/\/www.rb-media-group.de\/webhosting\/nextcloud-hosting.html",
         "flags":[
            "de"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "Die RB Media Group GmbH bietet Managed NextCloud Hosting inkl. Update und Backup ab nur 9.95€ je Monat an."
         ],
         "imagename":"rbmg.png"
      },
    {
         "title":"GWC-Systems",
         "url":"https:\/\/www.gwc-systems.de\/enterprise-cloud",
         "flags":[
            "de"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "Eine Cloud in Ihrem firmeneigenen Design! Die Daten liegen bei GWC-Systems auf deutschen, gesicherten Clustern und sind jederzeit durch Sie abrufbar."
         ],
         "imagename":"gwc.png"
      },
    {
         "title":"Your Own Net",
         "url":"https:\/\/yourownnet.net\/nextcloud",
         "flags":[
            "nl",
            "fr",
            "de",
            "be",
            "es",
            "lu",
            "it",
            "pl"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "Nous proposons des instances Nextcloud au meilleur coût. Toutes fonctionnalités activées (Collabora Online inclus), gardez le contrôle de vos données."
         ],
         "imagename":"YON.png"
      },
    {
         "title":"Piets Host",
         "url":"https:\/\/piets-host.de\/cloud-hosting",
         "flags":[
            "de"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "Beim Piet's Host Cloud-Hosting liegen Ihre Daten ausschließlich auf deutschen Servern und nicht, wie bei Dropbox & Co, überall auf der Welt verteilt!"
         ],
         "imagename":"piets.png"
      },
    {
         "title":"Örestad Linux AB",
         "url":"https:\/\/orestad-linux.se\/vara-paket",
         "flags":[
            "se"
         ],
         "freeplans":false,
         "supports":"organization",
         "specializes":[
            "Din Data, på Dina villkor. Hos oss på Örestad Linux är din data säker. Våra servrar finns belägna i ett toppmodernt datacenter i Malmö."
         ],
         "imagename":"orestad.png"
      },
    {
         "title":"IndieHosters",
         "url":"https:\/\/indiehosters.net",
         "flags":[
            "fr",
            "de",
            "pt",
            "eu",
            "all"
         ],
         "freeplans":true,
         "supports":"both",
         "specializes":[
            "A complete software suite for you and your organization. Servers based in Germany with backups and human support for the world!"
         ],
         "imagename":"indiehosters.png"
      },
    {
         "title":"GreenAnt Networks",
         "url":"https:\/\/www.greenant.net\/cloud-storage",
         "flags":[
            "au"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "GreenAnt offers an Australia-based Nextcloud option. Our servers are peered on AARNET so syncing is super fast and reliable."
         ],
         "imagename":"greenant.png"
      },
    {
         "title":"punkt.de Hosting",
         "url":"https:\/\/hosting.punkt.de\/de\/server-and-beiwerk\/nextcloud.html",
         "flags":[
            "de"
         ],
         "freeplans":false,
         "supports":"organization",
         "specializes":[
            "Professionelle Business Nextcloud-Lösungen mit großem Speicher (ab 500 GB), inklusive 7 Tage Backup. Gehostet in Deutschland."
         ],
         "imagename":"punktde.png"
      },
    {
         "title":"awesome IT",
         "url":"https:\/\/awesome-it.de\/cloud\/storage",
         "flags":[
            "de"
         ],
         "freeplans":false,
         "supports":"organization",
         "specializes":[
            "Speichern Sie Ihre Dokumente und Dateien geräte- und ortsunabhängig im unternehmenseigenen Cloud Speicher. Wir übernehmen die Einrichtung und Wartung."
         ],
         "imagename":"awesomeit.png"
      },
    {
         "title":"RoundIT",
         "url":"https:\/\/www.roundit.de\/produkte\/21-nextcloud-server",
         "flags":[
            "de"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "Serverhosting in Europa (Köln und Straßburg) inkl. Traffic-Flatrate SSL-Zertifikat und unbegrenzter Anzahl Benutzer!"
         ],
         "imagename":"roundit.png"
      },
    {
         "title":"Netways",
         "url":"https:\/\/nws.netways.de\/contracts\/new?product_id=20-nextcloud",
         "flags":[
            "de",
            "eu"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "The perfect place for all your data in the cloud. Hosted in Germany."
         ],
         "imagename":"netways.png"
      },
    {
         "title":"Cloudron",
         "url":"https:\/\/cloudron.io\/store\/com.nextcloud.cloudronapp.html",
         "flags":[
            "all"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "Cloudron is a platform to run apps on your server, hosted on DigitalOcean. Cloudron makes self hosting Nextcloud easy!"
         ],
         "imagename":"cloudron.png"
      },
    {
         "title":"CiviHosting",
         "url":"https:\/\/civihosting.com\/nextcloud-hosting",
         "flags":[
            "eu",
            "us",
            "all"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "For over 10 years, CiviHosting has provided hosting expertise, great support, and a perfect security record. Take no chances with your Nextcloud data."
         ],
         "imagename":"civihosting.png"
      },
    {
         "title":"Quality Location UG",
         "url":"https:\/\/www.qloc.de\/nextcloud",
         "flags":[
            "de",
            "ch",
            "at",
            "eu",
            "all"
         ],
         "freeplans":true,
         "supports":"both",
         "specializes":[
            "We offer German-hosted Nextcloud hosting as well as dedicated servers and webspaces. All services are protected by strict german privacy law."
         ],
         "imagename":"qloc.png"
      },
    {
         "title":"GreenNet Ltd",
         "url":"https:\/\/www.greennet.org.uk\/internet-services\/cloud-storage",
         "flags":[
            "gb",
            "eu",
            "all"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "A not-for-profit collective since 1985, we provide UK-based Nextcloud and Collabora hosting to supporters of peace, the environment and human rights."
         ],
         "imagename":"greennet.png"
      },
    {
         "title":"Demindo",
         "url":"https:\/\/demindo.com\/nextcloud",
         "flags":[
            "nl",
            "de",
            "be",
            "gb",
            "fr",
            "eu",
            "all"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "Demindo offers Nexcloud hosting on Dutch and European servers for private customers as well as organizations."
         ],
         "imagename":"demindo.png"
      },
    {
         "title":"BTACTIC",
         "url":"https:\/\/www.btactic.com\/bsolutions\/bcloud",
         "flags":[
            "es",
            "fr"
         ],
         "freeplans":false,
         "supports":"organization",
         "specializes":[
            "En bTactic somos expertos en soluciones de software libre, codigo abierto y cloud computing. Entre estos servicios ofrecemos la plataforma Nextcloud."
         ],
         "imagename":"btactic.png"
      },
    {
         "title":"PROHosting",
         "url":"https:\/\/cloud.prohosting.by",
         "flags":[
            "by"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "PROHosting is a first Belarussian organization, respectful of privacy. We offer free and alternative Cloud solutions for all. Ready to use or dedicated server."
         ],
         "imagename":"prohosting.png"
      },
    {
         "title":"SpeiBox",
         "url":"https:\/\/speibox.de",
         "flags":[
            "de",
            "at"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "SpeiBox is your managed Nextcloud hosting provider: your files, safe, in Germany. You can expand your SpeiBox to a collaboration tool!"
         ],
         "imagename":"spreibox.png"
      },
    {
         "title":"sitorix GmbH",
         "url":"https:\/\/www.cloudlay.com",
         "flags":[
            "de",
            "en",
            "es"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "We offer our customers dedicated Nextcloud instances with daily backup and on servers located in Germany."
         ],
         "imagename":"cloudlay.png"
      },
    {
         "title":"Ops One AG",
         "url":"https:\/\/opsone.ch\/nextcloud",
         "flags":[
            "ch",
            "de"
         ],
         "freeplans":false,
         "supports":"organization",
         "specializes":[
            "We offer free accounts up to full-featured managed Nextcloud installations, running on our completely redundant private cloud infrastructure in Zurich, Switzerland."
         ],
         "imagename":"opsone.png"
      },
    {
         "title":"Next IT Level GmbH",
         "url":"https:\/\/nextitlevel.de\/index.php\/component\/content\/article?id=81",
         "flags":[
            "de",
            "at",
            "sk"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "We offer a service for self-hosted servers with daily off-site backup. You can use your own hosting provider or we can provide one."
         ],
         "imagename":"nextitlevel.png"
      },
    {
         "title":"The Open Host",
         "url":"https:\/\/theopenhost.com\/nextcloud-hosting",
         "flags":[
            "eu",
            "us",
            "all"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "The Open Host - Nextcloud experts featuring 24/7 support and optimized, secure servers in the USA and Europe. We have both shared and VPS hosting."
         ],
         "imagename":"openhost.png"
      },
    {
         "title":"Open IT Store",
         "url":"https:\/\/openitstore.com\/nextcloud",
         "flags":[
            "eu",
            "us",
            "ca"
         ],
         "freeplans":true,
         "supports":"both",
         "specializes":[
            "We offer servers with daily off-site backup. every Nextcloud apps you want, Collabora, Spreed.me included. Global opensource IT store."
         ],
         "imagename":"openitstore.png"
      },
    {
         "title":"Kaster Development",
         "url":"https:\/\/kaster-development.de\/hosting\/cloud-hosting\/",
         "flags":[
            "de",
            "ch",
            "at",
            "eu",
            "all"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            " Ihre eigene Cloud für privat und Business Kunden. Ihre Daten sollen Ihre Daten bleiben, deshalb deutsche Server in qualifizierten Rechenzentren."
         ],
         "imagename":"kaster.jpg"
      },
    {
         "title":"XT3",
         "url":"https:\/\/xt3.it\/services\/cloud\/",
         "flags":[
            "it",
            "fr",
            "gb",
            "eu"
         ],
         "freeplans":true,
         "supports":"both",
         "specializes":[
            "Accounts: single/group, donation-based; apps: groupware, multimedia, notes, bookmarks, documents...; provider: no profit, flexible, German servers."
         ],
         "imagename":"xt3cloud.png"
      },
    {
         "title":"Merakitic SAS",
         "url":"http:\/\/www.merakitic.com/",
         "flags":[
            "co"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "Nextcloud storage and VPS renting"
         ],
         "imagename":"merakitic.png"
      },
    {
         "title":"eXtro.media GbR",
         "url":"https:\/\/www.extro.hosting\/nextcloud-managed-ssd-vserver-plesk.html",
         "flags":[
            "de",
            "ch",
            "at",
            "li"
         ],
         "freeplans":false,
         "supports":"organization",
         "specializes":[
            "We offer SSD Nextcloud Server in German data centers, starting with SSD vServer up to managed services for enterprise critical environment."
         ],
         "imagename":"extro.png"
      },
    {
         "title":"Silent Infotech",
         "url":"https:\/\/silentinfotech.com\/services\/cloud\/nextcloud",
         "flags":[
            "us",
            "gb",
            "in",
            "ke",
            "ae",
            "ug"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "Mail Accounts & secure, private Nextcloud hosted solution. Scaleable setup for growing organizations, scheduled backups, rebranding and custom features"
         ],
         "imagename":"silentinfotech.png"
      },
    {
         "title":"Nou en Off",
         "url":"https:\/\/www.mijncloudoffice.nl",
         "flags":[
            "nl",
            "be"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "Mijncloudoffice.nl combines Collabora Online & Nextcloud; enabeling people to work in the cloud with ease, without compromising on security & privacy."
         ],
         "imagename":"mijncloudoffice.png"
      },
    {
         "title":"bg-edv.systeme GmbH und Co KG",
         "url":"https:\/\/bg-edv.com\/nextcloud-hosting",
         "flags":[
            "eu"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "Ihre eigene professionelle Nextcloud-Lösung mit großem Speicher, inkl. 7 Tage Backup. Optional mit Collabora Online Paket. Gehostet in Deutschland."
         ],
         "imagename":"bg-edv.png"
      },
    {
         "title":"fnordserver",
         "url":"https:\/\/fnordserver.eu\/de\/nextcloud/",
         "flags":[
            "de",
            "at",
            "ch",
            "eu",
            "gb",
            "se",
            "is",
            "lu",
            "be"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "fnordserver is your partner for managed web solutions and managed Nextcloud hosting with automated backups, updates, and rock-solid security."
         ],
         "imagename":"fnord.png"
      },
    {
         "title":"GETCON",
         "url":"https:\/\/www.getcon.com.br\/hospedagem-nextcloud",
         "flags":[
            "br"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "GETCON offers Nextcloud hosting in Brazil on our very fast SSD drives for you to backup and share your files (pictures, documents, videos, files)."
         ],
         "imagename":"getcon.png"
      },
    {
         "title":"Windcloud",
         "url":"https:\/\/windcloud.org\/datenspeicher",
         "flags":[
            "de"
         ],
         "freeplans":false,
         "supports":"organization",
         "specializes":[
            "Windcloud - Your Green Data Center. Based on our renewable energy infrastructure we are your partner for cloud storage, -infrastructure, VMs..."
         ],
         "imagename":"windcloud.png"
      },
    {
         "title":"Rocho DataCenter",
         "url":"https:\/\/www.rochodc.com\/categorie-produit\/cloud",
         "flags":[
            "fr",
            "eu",
            "all"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "Nous proposons des instances Nextcloud au meilleur coût. Toutes fonctionnalités activées (Collabora Online inclus), gardez le contrôle de vos données."
         ],
         "imagename":"rocho.png"
      },
    {
         "title":"Serverdiscounter",
         "url":"https:\/\/serverdiscounter.com\/drive\/",
         "flags":[
            "de"
         ],
         "freeplans":true,
         "supports":"both",
         "specializes":[
            "Serverdiscounter bietet Netxcloud Hosting in Deutschen Rechenzentrum Frankfurt am Main. inkl. AES 256 Verschlüsselung direkt auf unserem Server."
         ],
         "imagename":"discounter.png"
      },
    {
         "title":"yourcloud.asia",
         "url":"https:\/\/yourcloud.asia\/",
         "flags":[
            "hk",
            "tw"
         ],
         "freeplans":false,
         "supports":"consumer",
         "specializes":[
            "Simple, fast and private cloud hosting in Asia. Support in English, in a local time zone. Encrypted local storage, with encrypted web connections. Take back control of your data!"
         ],
         "imagename":"yourcloudasia.png"
      },
    {
         "title":"Webicom d.o.o.",
         "url":"https:\/\/www.next-cloud.si\/",
         "flags":[
            "si",
            "ru",
            "eu",
            "sr",
            "cr"
            ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "To protect your files you need to back them up, and keeping your backups offsite is the best way to ensure their safety.  100GB/year only 18 EUR."
         ],
         "imagename":"webicom.png"
      },
    {
         "title":"Kloecker GmbH - Medienagentur",
         "url":"https:\/\/www.kloecker.ac\/dienstleistungsverzeichnis\/n\/nextcloud.php",
         "flags":[
            "de"
         ],
         "freeplans":false,
         "supports":"organization",
         "specializes":[
            "In the area of webhosting we use virtual servers (vServer, VPS) and offer an individual package at a monthly flat rate for individual requirements."
         ],
         "imagename":"klocker.jpg"
      },
    {
         "title":"Linuxfabrik GmbH",
         "url":"https:\/\/www.linuxfabrik.ch\/services\/",
         "flags":[
            "de",
            "ch",
            "at"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "As specialists we support companies from consulting to the safe operations of selected Open Source Software on demand with technical support 365 days a year"
         ],
         "imagename":"fabrik.png"
      },
    {
         "title":"OperWEB",
         "url":"https:\/\/www.operweb.com\/nextcloud\/",
         "flags":[
            "it"
         ],
         "freeplans":false,
         "supports":"organization",
         "specializes":[
            "We offer Italy-hosted servers with Nextcloud. You can select the amount of cloud space you need and you can upgrade at any time."
         ],
         "imagename":"operweb.png"
      },
    {
         "title":"Netquatro",
         "url":"https:\/\/net4cloud.com\/net4cloud\/caracteristicas-de-la-nube/",
         "flags":[
            "co",
            "ve"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "We offer public and private cloud storage to protect your most valuable assets. We shield your information."
         ],
         "imagename":"net4cloud.png"
      },
    {
         "title":"Cloudhosting.Space",
         "url":"https:\/\/cloudhosting.space",
         "flags":[
            "au"
         ],
         "freeplans":false,
         "supports":"organization",
         "specializes":[
            "CLOUDHOSTING.SPACE dedicated cloud storage servers are located in Australia and come with automatic server backups and unlimited user accounts."
         ],
         "imagename":"cloudhostingspace.png"
      },
    {
         "title":"DediSERVE Limited",
         "url":"https:\/\/www.dediserve.com\/dediserve-vault",
         "flags":[
            "ie",
            "gb",
            "us",
            "au",
            "in",
            "hk",
            "si"

         ],
         "freeplans":true,
         "supports":"organization",
         "specializes":[
            "DediSERVE are the world largest OnApp provider, specializing in blazing fast All-SSD public and private cloud environments with 17 locations worldwide"
         ],
         "imagename":"dediserve.png"
      },
    {
         "title":"Semantica",
         "url":"http:\/\/s7a.it\/web\/products_cloudsystem",
         "flags":[
            "it",
            "eu"

         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "We offer hosted, Vps, On Premise Nextcloud and Collabora solutions. We develop apps and core customization."
         ],
         "imagename":"semantica.png"
      },
    {
         "title":"Infmaster",
         "url":"https:\/\/nextcloud.infmaster.com.br",
         "flags":[
            "br",
            "pt"

         ],
         "freeplans":false,
         "supports":"organization",
         "specializes":[
            "We offer a dedicated and isolated virtual server with the latest Nextcloud version, all installations have SSL certificates and daily backups."
         ],
         "imagename":"infmaster.png"
      },
    {
         "title":"deskonline.cloud",
         "url":"https:\/\/deskonline.cloud",
         "flags":[
            "au",
            "nz"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "The Cloud SOE - \"Collaboration Environment\" with Files/Emails/Contacts/Calendar/Tasks/Boards/Video/Audio/Chat/Share."
         ],
         "imagename":"deskonline.png"
      },
    {
         "title":"Spry Servers",
         "url":"https:\/\/www.spryservers.net\/sprycloud",
         "flags":[
            "us",
            "all"
         ],
         "freeplans":true,
         "supports":"both",
         "specializes":[
            "Rock solid Nextcloud powered backup and sync. We utilize the latest security and encryption technologies/practices to keep your data safe."
         ],
         "imagename":"spryservers.png"
      },
    {
         "title":"CyanSpace",
         "url":"https:\/\/cyanspace.net",
         "flags":[
            "gb"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "UK-based servers - including Collabora office integration, TURN server for Talk app, Calendar, Mail, Deck and more."
         ],
         "imagename":"cyanspace.png"
      },
    {
         "title":"Televideocom Srl",
         "url":"https:\/\/nextcloud.capitanhostino.it\/cloud-storage.php",
         "flags":[
            "it"
         ],
         "freeplans":false,
         "supports":"organization",
         "specializes":[
            "MyPocket is a private cloud solution for manage data among your multiple devices. Unlimited bandwidth, DDos protection, IPS/IDS and all mobile apps."
         ],
         "imagename":"capitan.png"
      },
    {
         "title":"Webarchitects Co-operative",
         "url":"https:\/\/www.webarchitects.coop\/nextcloud",
         "flags":[
            "gb"
         ],
         "freeplans":false,
         "supports":"organization",
         "specializes":[
            "Private, secure, managed, co-operative, Nextcloud servers powered by green electricity in the UK with Collabora Online and Nextcloud Talk."
         ],
         "imagename":"webarch_coop.png"
      },
    {
         "title":"hinterhofbu.de",
         "url":"https:\/\/hinterhofbu.de\/nextcloud",
         "flags":[
            "de",
            "at",
            "ch"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "Managed Nextcloud Server hosted in Germany, daily backups, A+ grades in SSL Labs and Nextcloud Security Scan guaranteed."
         ],
         "imagename":"hinterhofbu.png"
      },
    {
         "title":"Tim Klein",
         "url":"https:\/\/www.prox42.de\/private-cloud.html",
         "flags":[
            "de"
         ],
         "freeplans":false,
         "supports":"organization",
         "specializes":[
            "Your own data in your own secured cloud: hosted and managed services with Nextcloud for your business. Servers only in Germany, DS-GVO/GDPR ready."
         ],
         "imagename":"prox42.png"
      },
    {
         "title":"Twist Development Limited",
         "url":"https:\/\/www.twistdevelopment.co.uk\/file-sharing",
         "flags":[
            "gb"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "We are a UK based company offering off-site high spec servers with NextCloud ready to go. We offer full training and technical support."
         ],
         "imagename":"twist.png"
      },
    {
         "title":"Thexyz Inc",
         "url":"https:\/\/www.thexyz.com\/nextcloud.php",
         "flags":[
            "gb",
            "ca",
            "us"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "Build your Nextcloud on a fully redundant North American server with daily off-site backups."
         ],
         "imagename":"thexyz.png"
      },
    {
         "title":"CABOSYS - LDA",
         "url":"https:\/\/www.cabosys.cv\/cloudsys",
         "flags":[
            "cv",
            "ao",
            "st",
            "gw",
            "gq",
            "mz",
            "tp"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "Our organizations is based in Cape Verde Islands and we are offering backup solutions for the CPLP group"
         ],
         "imagename":"cloudsys.png"
      },
    {
         "title":"Danteck",
         "url":"https:\/\/www.danteck.nl\/hosted-nextcloud",
         "flags":[
            "nl"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "Offering Hosted Nextcloud located in datacenters in the Netherlands. Hostingplans include backup and maintained by Danteck"
         ],
         "imagename":"danteck.png"
      },
    {
         "title":"pro-ite GmbH",
         "url":"https:\/\/www.pro-ite.de\/hosting-housing\/nextcloud\/",
         "flags":[
            "de"
         ],
         "freeplans":false,
         "supports":"organisation",
         "specializes":[
            "Support, Installation und sichere Hostinglösungen von pro-ite. Ihre Daten werden auf Servern im ISO 27001 zertifizierten Rechenzentrum vorgehalten."
         ],
         "imagename":"pro-ite.png"
      },
    {
         "title":"TAB.DIGITAL",
         "url":"https:\/\/tab.digital",
         "flags":[
            "nl",
            "se",
            "lv"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "Just think about your business! No more worries about services located in different places. More opportunity with Nextcloud"
         ],
         "imagename":"tab.png"
      },
    {
         "title":"peaknetworks",
         "url":"https:\/\/www.peaknetworks.at\/nextcloud-hosting\/",
         "flags":[
            "ch",
            "eu"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "Fast and secure Nextcloud Hosting on ZFS based storage, Nginx reverse caching proxy, PHP-FPM with Opcache for EU and Swiss customers."
         ],
         "imagename":"peaknetworks.png"
      },
    {
         "title":"QloudIT",
         "url":"https:\/\/www.qloudit.com\/hosted-nextcloud",
         "flags":[
            "us"
         ],
         "freeplans":false,
         "supports":"organisation",
         "specializes":[
            "Securely Hosted Nextcloud Platforms, on QNE, offer industry-leading file sync and online collaboration technologies"
         ],
         "imagename":"qloudit.png"
      },
    {
         "title":"JANAS TECHNOLOGIES",
         "url":"https:\/\/www.janas-tech.com\/index.php\/36-icon-posts\/88-private-cloud",
         "flags":[
            "it"
         ],
         "freeplans":false,
         "supports":"organisation",
         "specializes":[
            "We offer private cloud solution realized with the complete integration between Nextcloud, OnlyOffice and Zimbra collaboration server"
         ],
         "imagename":"janas.png"
      },
    {
         "title":"CloudNow GmbH",
         "url":"https:\/\/www.cloudnow.at\/cloud-files",
         "flags":[
            "at",
            "de",
            "ch"
         ],
         "freeplans":false,
         "supports":"organisation",
         "specializes":[
            "Wir bieten Nextcloud als eigene Instanz oder Shared in unserer hochverfügbaren NetApp Infrastruktur in Österreich an. DSGVO konform und ISO 27001 zertifiziert."
         ],
         "imagename":"cloudnow.png"
      },
    {
         "title":"Big SAFEBOX Data",
         "url":"https:\/\/www.bsbdata.com\/servicio\/servidores-dedicados",
         "flags":[
            "es"
         ],
         "freeplans":false,
         "supports":"both",
         "specializes":[
            "We are a Data Center Tier II. Our servers are locate in spain. We offer space and service of the Nexcloud and other services as housing, vps, ..."
         ],
         "imagename":"bsbd.png"
      },
    {
         "title":"NOBUGS IT GmbH",
         "url":"https:\/\/www.nobugs.gmbh\/at\/Service_NCS.html ",
         "flags":[
            "at"
         ],
         "freeplans":false,
         "supports":"organization",
         "specializes":[
            "NCS. Ein Dienst der auf Ihr Unternehmen zugeschnitten ist und Zahlreiche Erweiterungsöglichkeiten bietet. Rechenzentren nach ISO 27001 in Österreich."
         ],
         "imagename":"nobugs.png"
      },
    {
        "title":"thegood.cloud",
        "url":"https:\/\/thegood.cloud",
        "flags":[
            "nl",
            "be",
            "eu",
            "all"
        ],
        "freeplans":true,
        "supports":"both",
        "specializes":[
            "Store, sync and share without compromising your privacy! Online office with Collabora optional. Hosted on our own hardware in Amsterdam."
        ],
        "imagename":"thegoodcloud.png"
      },
    {
        "title":"Digipime",
        "url":"https:\/\/digipime.com",
        "flags":[
            "es"
        ],
        "freeplans":false,
        "supports":"organization",
        "specializes":[
            "We offer secure installation, personalization and dedicated hosting for Nextcloud in EU. Our services are oriented to business productivity"
        ],
        "imagename":"nextcloud-digipime.png"
      }
]