• Что бы вступить в ряды "Принятый кодер" Вам нужно:
    Написать 10 полезных сообщений или тем и Получить 10 симпатий.
    Для того кто не хочет терять время,может пожертвовать средства для поддержки сервеса, и вступить в ряды VIP на месяц, дополнительная информация в лс.

  • Пользаватели которые будут спамить, уходят в бан без предупреждения. Спам сообщения определяется администрацией и модератором.

  • Гость, Что бы Вы хотели увидеть на нашем Форуме? Изложить свои идеи и пожелания по улучшению форума Вы можете поделиться с нами здесь. ----> Перейдите сюда
  • Все пользователи не прошедшие проверку электронной почты будут заблокированы. Все вопросы с разблокировкой обращайтесь по адресу электронной почте : info@guardianelinks.com . Не пришло сообщение о проверке или о сбросе также сообщите нам.

How to ungoogle your Business: Google Drive Edition

Lomanu4 Оффлайн

Lomanu4

Команда форума
Администратор
Регистрация
1 Мар 2015
Сообщения
1,481
Баллы
155
Google Drive is convenient. But it comes with tradeoffs and they get worse the bigger your team grows.

Every document, every spreadsheet, every sensitive file: stored on servers owned by a 2 trillion US tech company, subject to US law, priced per user, and hosted who knows where. That might not bother you if you're a startup with three people. But if you're a company in the EU with 50 employees and growing privacy concerns, it’s time to ask:

Why are you still using Google Drive?

There’s a better way and it starts with open source.

Step 1: Replace Google Drive with Nextcloud


The most popular open source alternative to Google Drive is Nextcloud.

It gives you:

  • A modern file sharing interface
  • Fine grained user permissions
  • Calendar, contacts, and collaboration add ons
  • End to end encryption
  • Full control over where your data lives

You can self host it. You don’t need Google anymore.

Let’s prove it.

Step 2: Self hosting with Docker Compose


If you're comfortable with Docker, getting a basic Nextcloud setup running takes just a few lines of YAML.


services:
nextcloud:
depends_on:
- postgres
image: nextcloud:apache
environment:
- POSTGRES_HOST=postgres
- POSTGRES_PASSWORD=nextcloud
- POSTGRES_DB=nextcloud
- POSTGRES_USER=nextcloud
ports:
- 8000:80
restart: always
volumes:
- nc_data:/var/www/html

postgres:
image: postgres:alpine
environment:
- POSTGRES_PASSWORD=nextcloud
- POSTGRES_DB=nextcloud
- POSTGRES_USER=nextcloud
restart: always
volumes:
- db_data:/var/lib/postgresql/data
expose:
- 5432

volumes:
db_data:
nc_data:

Then run:


docker compose up -d

Visit

Пожалуйста Авторизируйтесь или Зарегистрируйтесь для просмотра скрытого текста.

, finish the browser based setup, and you’ve got a private Google Drive replacement running locally.

Congrats. You're now hosting your own cloud. For a full setup guide, check out

Пожалуйста Авторизируйтесь или Зарегистрируйтесь для просмотра скрытого текста.

.

Step 3: And now the catch


You're also now responsible for:

  • Regular Nextcloud updates
  • Postgres and PHP security patches
  • TLS certificates
  • Offsite backups
  • Monitoring uptime and disk usage
  • Scaling storage
  • DNS and domain config
  • Email relay setup
  • Fixing it all when it breaks on a weekend

Self hosting gives you control. But it also gives you the burden of control.

Step 4: Or let someone else handle it


What if you could have all the benefits of self hosting like privacy, ownership, and flexibility without the operational burden?

That’s where something like

Пожалуйста Авторизируйтесь или Зарегистрируйтесь для просмотра скрытого текста.

comes in.

It’s a platform for hosting open source apps like Nextcloud without needing to touch a server. You get:

  • Simple deployment (no terminal access required)
  • Full admin access
  • Hosted in German data centers, by a German company
  • Daily backups and uptime monitoring
  • No per user pricing

Watch how easy it is to deploy Nextcloud on

Пожалуйста Авторизируйтесь или Зарегистрируйтесь для просмотра скрытого текста.

:


Let’s talk numbers.

Google Workspace Business Standard charges 12 euros per user per month.
If you have 50 users, that’s 600 euros per month plus taxes.
And that’s for just 100 GB of shared storage.

With

Пожалуйста Авторизируйтесь или Зарегистрируйтесь для просмотра скрытого текста.

, the same setup costs 44 euros per month.

That’s a 93 percent saving, hosted in Germany, under your control.

(If you need a lot of storage Google Drive is still a good deal.)

Final Thought


You can go the full DIY route with Docker. And if you're an engineer with time on your hands, that might be fine.

But if you want something closer to the Google Drive experience, just without the Google part, there are better ways to run Nextcloud.

Your business doesn’t need to feed user data into US hyperscalers.
Your files don’t need to live in California.
And you don’t need to pay 700 euros per month for 100 GB of data.

You just need to degoogle.

Ready to take back control?

Cheers,

Jonas, Co-Founder of

Пожалуйста Авторизируйтесь или Зарегистрируйтесь для просмотра скрытого текста.




Пожалуйста Авторизируйтесь или Зарегистрируйтесь для просмотра скрытого текста.

 
Вверх Снизу