惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

有赞技术团队
有赞技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
IT之家
IT之家
博客园 - 【当耐特】
罗磊的独立博客
Stack Overflow Blog
Stack Overflow Blog
MyScale Blog
MyScale Blog
WordPress大学
WordPress大学
The GitHub Blog
The GitHub Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Hugging Face - Blog
Hugging Face - Blog
I
InfoQ
B
Blog RSS Feed
腾讯CDC
云风的 BLOG
云风的 BLOG
N
Netflix TechBlog - Medium
Apple Machine Learning Research
Apple Machine Learning Research
GbyAI
GbyAI
雷峰网
雷峰网
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
D
DataBreaches.Net
The Cloudflare Blog
V
V2EX
S
SegmentFault 最新的问题

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Deploying Discourse Open-Source Community Discussion Plat...
Sanskriti Harmukh · 2026-06-17 · via DEV Community

Discourse is an open-source community discussion platform that merges traditional forums, mailing-list workflows, and real-time conversations into a mobile-first interface. This guide deploys Discourse on Ubuntu 24.04 using the official installer, which handles Docker setup, configuration generation, and automatic Let's Encrypt HTTPS. By the end, you'll have a Discourse forum running securely at your domain with the community dashboard ready.

Prerequisite: A Discourse ID account at id.discourse.com. Custom domain or a free discourse.diy subdomain works.


Claim a Free Subdomain (Optional)

If you don't have a custom domain:

  1. Visit https://id.discourse.com/my/subdomain.
  2. Sign in with your Discourse ID account.
  3. Pick a unique subdomain (e.g. mydiscourse.discourse.diy).
  4. Click Claim Subdomain.
  5. Generate the verification code (expires in 10 minutes — keep it ready).

Run the Discourse Installer

Warning: Run installer scripts only from trusted sources. The Discourse installer runs as root and modifies Docker, firewall rules, and TLS settings.

1. Create the project directory:

$ mkdir discourse
$ cd discourse

2. Download and execute the installer:

$ wget -qO- https://raw.githubusercontent.com/discourse/discourse_docker/main/install-discourse | sudo bash

The script installs Docker, generates configuration, enables Let's Encrypt, and launches the setup wizard.


Configure the Deployment

The interactive wizard prompts for:

  • Admin email — your Discourse ID account email.
  • Domain selectionNo to use a discourse.diy subdomain (enter the verification code); Yes for a custom domain already pointing at the server.
  • SMTP configurationNo to defer until later; Yes to configure SMTP now.

After reviewing the settings, select Yes to deploy. The first build can take a few minutes.

Verify the container is running:

$ docker ps

Look for a container named app using the local_discourse/app image with ports 80 and 443 mapped.


Access the Discourse Dashboard

1. Open the site over HTTPS:

https://discourse.example.com

2. Sign in with **Login with Discourse ID.**

3. Complete the Getting Started wizard:

  • Community name — forum title.
  • Language — primary interface language.
  • Visibility — public (searchable) or private (login required).
  • Registration — open sign-up or invite only.
  • Account approval — toggle moderator review for new users.

4. Create a starter category and publish an introduction topic from the New Topic button.


Next Steps

Discourse is running with HTTPS at your domain. From here you can:

  • Configure SMTP under Admin → Email for transactional and digest emails
  • Install themes and plugins from the official marketplace
  • Enable single sign-on (Discourse Connect, SAML, OAuth) to bridge your existing user base

For the full guide with additional tips, visit the original article on Vultr Docs.