إعدادات متعددة المواقع باستخدام Docker

:warning: على الرغم من أن تعدد المواقع (multisite) مدعوم في تطبيق Discourse، إلا أن هذا إعداد متقدم لمسؤول النظام. إذا لم تكن تعرف ما تفعله، فلا تقم بإعداد تعدد المواقع. فريق Discourse غير قادر على تقديم دعم لإعداد تعدد المواقع.

إذا كنت ترغب في استضافة نطاقات متعددة على إعداد Docker واحد، فستحتاج إلى إعداد تعدد المواقع. فيما يلي اللبنات الأساسية لذلك.

فهم الخطافات (Hooks)

تعدد المواقع موضوع متقدم إلى حد ما. قبل محاولة بناء تعدد المواقع، اقضِ بعض الوقت في تعلمها.

تستخدم قوالب Discourse pups؛ وقواعدها بسيطة وقوية.

كل قاعدة تقوم بتشغيلها قد تُعرّف خطافًا (hook):

run:
  exec:
    cd: some/path
    hook: my_hook
    cmd:
      - echo 1

لاحقًا في الحاوية الخاصة بك، يمكنك إدراج قواعد قبل أو بعد خطاف:

hooks:
  before_my_hook:
    - exec: echo "I ran before"
  after_my_hook:
     - exec: echo "I ran after"

لذا في المثال أعلاه، سترى مخرجات مثل ما يلي:

I ran before
1
I ran after

يمكنك قراءة القوالب في /var/discourse/templates لمعرفة الخطافات المتاحة لديك.

تعديل حاوية التثبيت المستقلة لتوفير مستأجر الموقع الثاني

استبدل قسم الخطافات بأكمله بما يلي:

hooks:
  after_postgres:
     - exec: sudo -u postgres createdb b_discourse || exit 0
     - exec:
          stdin: |
            grant all privileges on database b_discourse to discourse;
          cmd: sudo -u postgres psql b_discourse
          raise_on_fail: false

     - exec: /bin/bash -c 'sudo -u postgres psql b_discourse <<< "alter schema public owner to discourse;"'
     - exec: /bin/bash -c 'sudo -u postgres psql b_discourse <<< "create extension if not exists hstore;"'
     - exec: /bin/bash -c 'sudo -u postgres psql b_discourse <<< "create extension if not exists pg_trgm;"'

  after_code:
    - exec:
        cd: $home/plugins
        cmd:
          - mkdir -p plugins
          - git clone https://github.com/discourse/docker_manager.git
  before_bundle_exec:
    - file:
        path: $home/config/multisite.yml
        contents: |
         secondsite:
           adapter: postgresql
           database: b_discourse
           pool: 25
           timeout: 5000
           db_id: 2
           host_names:
             - b.discourse.example.com

  after_bundle_exec:
    - exec: cd /var/www/discourse && sudo -H -E -u discourse bundle exec rake multisite:migrate

هناك 3 خطافات قيد الاستخدام:

  1. after_postgres يضمن أنه بعد تثبيت postgres يتم إنشاء قاعدة بيانات إضافية تسمى b_discourse مع الأذونات المناسبة.

  2. before_bundle_exec يضمن وجود docker_manager وأن ملف multisite.yml موجود (والذي يحدد مكان العثور على قواعد البيانات)

  3. after_bundle_exec يشغل مهمة ترحيل قاعدة البيانات المخصصة rake multisite:migrate وهذا يضمن تحديث جميع قواعد البيانات.

ملاحظة حول التكوين

يمكن تقسيم العينة المذكورة أعلاه إلى حاوية بيانات / حاوية تطبيق إذا لزم الأمر. فقط قم بتشغيل الخطاف after_postgres في حاوية البيانات والباقي في حاوية الويب.

يمكن توسيع العينة المذكورة أعلاه لتوفير المزيد من قواعد البيانات. للقيام بذلك، قم بتوفير المزيد من قواعد البيانات عن طريق تكرار استدعاءات إنشاء قاعدة البيانات وما إلى ذلك، وتأكد من إضافة مواقع إضافية في multisite.yml.

تأكد من تعديل عقدة host_names في multisite.yml لتتوافق مع اسم المضيف الفعلي الذي ترغب في استضافته.

أيضًا، إذا كنت تخطط لتشغيل HTTPS، فستحتاج إلى وكيل (proxy) أمام الموقع للتعامل معه لأن وظيفة letsencrypt المضمنة لن تعمل في سيناريو تعدد المواقع.

69 إعجابًا
How does multisite.yml look?
Multiple Forums in a Single Installation
How to create 1000 subcategories in a scalable way?
Multiple Discourses, multiple containers, one server
Pros and cons of multiple standalone containers vs one for multiple Discourse installs?
Success - New Multisite Install on Dedicated server using ServerPilot, Nginx and Apache
Multisite Installation
Will I need to start over with multisite configuration from standalone version?
Multiple Discourse Installs - Single Server
Starting a second Discourse forum on the same VPS
Pros and cons of a multisite installation
Installation wizard not appearing in multisite installs
Disabling/restricting user search
Sandbox and test discourse on host?
Multisite installation with seperated smtp emails
How do you set up multiple discourse forums on the same server?
Help me setup many websites on one VPS
Second discourse instance on the same server
Discourse multisite installation help with digitalocean
Need proper documentation for multisite discourse with docker
Discourse for 3 different Countrys
Micro Forums: how many could I create?
Remove sites from multisite config with Docker
How could I install another discourse on same server (docker)?
Can I log into multiple instances of discourse simultaneously?
How to setup host mapping on a multi-site discourse instance
Not receiving activation email for admin on multisite installation
Multisite viability - 2 read-only and 1 active
Install Discourse on Plesk / Ubuntu 14 without Docker
Totally Walled-Off Groups
Three sites in one setup
I want to host hundreds of instances of Discourse
Recover to one site from multisite
Publishing multisite
Multisite Config
Multiple communities on discourse?
Adding an instance to multisite without rebuilding the container
Is it possible to totally hide members
Need help with multisite configuration
Multitenat Dockerize Discourse
Installing on Kubernetes
How might we better structure #howto?
How to set redis DB ID in Docker container?
Pull request for Wikis?
How can I host more than 1 Discourse forum on 1 VPS?
Multiple discourse installation on single droplet
Integration with .NET MVC application for a SaaS platform
Setup Multisite Configuration with Let's Encrypt and no Reverse Proxy
Docker image update: Redis 6 and 25% smaller image size
Setup Multisite Configuration with Let's Encrypt and no Reverse Proxy
One server for 2 Discourse communities?
Multiple discourse instances in a single server
Pups::ExecError
Web-only - do I need a separate image for each container?
One server for 2 Discourse communities?
Multisite installation ... in subdirectories?
Stable branch assets won't compile
ActiveRecord::StatementInvalid: PG::UndefinedColumn: ERROR: column categories.search_priority does not exist
[mutlisite installation] pnpm permission error during rebuild
WP SSO + Discourse Multisite
All users are visible in @mentions autocomplete list
Migrate from VPS to a Dedicated
Are there other workarounds to not having category moderation such as multiple instances of the board?
Discourse Multisite – Nginx (Inside Docker) Only Serving Default Site
Stable branch assets won't compile
Two Discourse communities on the same VPS
How can I use different setting value for subdomain?
Will This Configuration Successfully Create a Second Discourse Instance (with Proxy)?
Pups::ExecError
Use CloudPanel to manage multiple sites with Discourse
Best approach for test and production instance of discourse
Two standalone instances on one server?
How can Admin login while Read-only mode is enabled on multisite?
Does discourse hosting use docker for all customer instances?
Tips for setting up a multi-subdomain Discourse instance with shared SSO?
Feature proposal: Customizations based on primary group membership, a.k.a. tenancy 'lite'
Using a launcher built docker image in docker-compose
Move from standalone container to separate web and data containers
Move from standalone container to separate web and data containers
Move from standalone container to separate web and data containers
Guidance on multi-site setup
Running multiple things on the same sever as my Pi (where Discourse is hosted)?
Contabo experience with Plesk, Webmin or other server-admin setup?
App.yml shared volumes for a two website setup
How extensible can I make my installation in terms of sub domains and restricting membership to them?
Discourse instance stops running in every midnight
Multisite for small collection of sites for a family?
Hosting Plan Suggestion for 500 Concurrent Online Users
Add path to cookie
Avatar, Site Logos, and Cert Errors
Database access issues after upgrade v3.5.2 -> v3.6.0.beta2
PAID Require Discourse expert for extreme customization
Move from standalone container to separate web and data containers
Can I have two domains pointing towards the same IP address without redirect?
Move from standalone container to separate web and data containers
Multiple container setup problems