Compare commits
25 Commits
d00d3fdc27
...
dev
| Author | SHA1 | Date | |
|---|---|---|---|
| 72d812b106 | |||
| c695bb1d72 | |||
| 49238da275 | |||
| 73583a0f62 | |||
| 01b6ceac22 | |||
| 06fd6be4d3 | |||
| e8c0ee9b47 | |||
| 5df435ba86 | |||
| a72eb09c1f | |||
| 24dba3e2ed | |||
| 730581c16d | |||
| c0adab4830 | |||
| 8c262ce6eb | |||
| 64b796c523 | |||
| 600287ee93 | |||
| 7e5ff6fcdc | |||
| 971dc0c086 | |||
| 7106a6774c | |||
| e1a57645b7 | |||
| be1affb0b2 | |||
| 1a21c67a2f | |||
| 4df4b60cdb | |||
| db571b51cf | |||
| 9bf2789bd4 | |||
| 40076ae429 |
@@ -62,3 +62,7 @@ PROD-*
|
|||||||
Dev-*
|
Dev-*
|
||||||
dev-*
|
dev-*
|
||||||
DEV-*
|
DEV-*
|
||||||
|
|
||||||
|
# Ignore custom Prosody hosts.
|
||||||
|
Config/Prosody/conf.avail/*
|
||||||
|
|
||||||
|
|||||||
@@ -8,11 +8,24 @@ FROM debian:trixie-slim
|
|||||||
## Setup ##
|
## Setup ##
|
||||||
# System Dependencies
|
# System Dependencies
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get install -y prosody \
|
apt-get install -y prosody \
|
||||||
bash sudo htop
|
bash sudo htop \
|
||||||
|
vim
|
||||||
|
|
||||||
|
## Configuration Files ##
|
||||||
|
# Clear old configurations.
|
||||||
|
RUN rm -rfv /etc/prosody/conf.d/*
|
||||||
|
# Add all the configuration files to the environment.
|
||||||
|
COPY ./etc/*.lua /etc/prosody/
|
||||||
|
COPY ./etc/conf.avail/* /etc/prosody/conf.d/
|
||||||
|
RUN rm -rfv /etc/prosody/README*
|
||||||
|
|
||||||
## Main ##
|
## Main ##
|
||||||
# Install + Run Website
|
# Install + Run Website
|
||||||
WORKDIR /root
|
WORKDIR /root
|
||||||
USER root
|
USER root
|
||||||
CMD tail -F /var/log/TBD
|
CMD prosodyctl cert import /etc/letsencrypt/live && \
|
||||||
|
service prosody start && \
|
||||||
|
prosodyctl reload && \
|
||||||
|
tail -F /var/log/prosody/prosody.log & \
|
||||||
|
tail -F /var/log/prosody/prosody.err
|
||||||
|
|||||||
@@ -0,0 +1,37 @@
|
|||||||
|
# Example docker-compose.yml for Prosody
|
||||||
|
# Documentation is available at:
|
||||||
|
# https://prosody.im/doc/docker
|
||||||
|
|
||||||
|
# Edit this file as necessary. Run 'docker compose up -d' to apply changes.
|
||||||
|
# Run 'docker compose up -d --pull' to check for and apply any Prosody updates.
|
||||||
|
|
||||||
|
services:
|
||||||
|
prosody:
|
||||||
|
# Change 13.0 to the branch you want to use
|
||||||
|
image: prosodyim/prosody:13.0
|
||||||
|
|
||||||
|
# Always check for updates when starting
|
||||||
|
pull_policy: always
|
||||||
|
|
||||||
|
# Automatically start Prosody, e.g. when your system starts, if it was
|
||||||
|
# running previously
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
|
# Network ports to expose
|
||||||
|
ports:
|
||||||
|
# Client connections
|
||||||
|
- 5222:5222
|
||||||
|
# Server-to-server connections
|
||||||
|
- 5269:5269
|
||||||
|
|
||||||
|
# Directories where data will be stored
|
||||||
|
volumes:
|
||||||
|
# This will use a 'data' directory in the same directory as the
|
||||||
|
# docker-compose.yml. Make this directory before you start Prosody,
|
||||||
|
# and ensure it is owned by a non-root user. The ownership of the
|
||||||
|
# directory will control the default user id that Prosody runs as.
|
||||||
|
- ./data:/var/lib/prosody
|
||||||
|
|
||||||
|
# Set environment variables. See the documentation for all possible options.
|
||||||
|
environment:
|
||||||
|
PROSODY_VIRTUAL_HOSTS: localhost
|
||||||
@@ -0,0 +1,47 @@
|
|||||||
|
# 2026-06-11 Hyperling
|
||||||
|
# Configuration for running a Prosody XMPP server.
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
prosody_data:
|
||||||
|
driver: local
|
||||||
|
driver_opts:
|
||||||
|
type: none
|
||||||
|
device: ../../Volumes/Prosody/data
|
||||||
|
o: bind
|
||||||
|
prosody_certs:
|
||||||
|
driver: local
|
||||||
|
driver_opts:
|
||||||
|
type: none
|
||||||
|
device: ../../Volumes/ReverseProxy/letsencrypt/live
|
||||||
|
o: bind
|
||||||
|
|
||||||
|
services:
|
||||||
|
app:
|
||||||
|
container_name: prosody
|
||||||
|
build:
|
||||||
|
context: ./
|
||||||
|
network: host
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- 5222:5222
|
||||||
|
- 5269:5269
|
||||||
|
#environment:
|
||||||
|
# - REPO=$REPO
|
||||||
|
# - BRANCH=$BRANCH
|
||||||
|
# - PROD=$PROD
|
||||||
|
# - DEV=$DEV
|
||||||
|
#healthcheck:
|
||||||
|
# test: curl -sS http://localhost:80 || curl -sS http://localhost:1380 || exit 1
|
||||||
|
# interval: 1m
|
||||||
|
# timeout: 10s
|
||||||
|
# retries: 2
|
||||||
|
# start_period: 30s
|
||||||
|
volumes:
|
||||||
|
- prosody_data:/var/lib/prosody/
|
||||||
|
- prosody_certs:/etc/letsencrypt/live
|
||||||
|
deploy:
|
||||||
|
mode: global
|
||||||
|
resources:
|
||||||
|
limits:
|
||||||
|
cpus: $CPU
|
||||||
|
memory: $MEM
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
# 2026-06-11 Hyperling
|
|
||||||
# Configuration for running a Prosody XMPP server.
|
|
||||||
|
|
||||||
services:
|
|
||||||
app:
|
|
||||||
container_name: prosody
|
|
||||||
build:
|
|
||||||
context: ./
|
|
||||||
network: host
|
|
||||||
restart: always
|
|
||||||
ports:
|
|
||||||
- 8013:80 # Production minified files served using NGINX.
|
|
||||||
- 1380:1380 # Development files with drafts served by Hugo Server.
|
|
||||||
environment:
|
|
||||||
- REPO=$REPO
|
|
||||||
- BRANCH=$BRANCH
|
|
||||||
- PROD=$PROD
|
|
||||||
- DEV=$DEV
|
|
||||||
healthcheck:
|
|
||||||
test: curl -sS http://localhost:80 || curl -sS http://localhost:1380 || exit 1
|
|
||||||
interval: 1m
|
|
||||||
timeout: 10s
|
|
||||||
retries: 2
|
|
||||||
start_period: 30s
|
|
||||||
volumes:
|
|
||||||
- ../../Volumes/Prosody/prosody:/etc/prosody
|
|
||||||
deploy:
|
|
||||||
mode: global
|
|
||||||
resources:
|
|
||||||
limits:
|
|
||||||
cpus: $CPU
|
|
||||||
memory: $MEM
|
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# Config/Prosody/etc
|
||||||
|
|
||||||
|
These files will be copied to /etc/prosody/* on the container.
|
||||||
|
|
||||||
|
Default example files are provided in the conf.avail directory and should not be modified.
|
||||||
|
|
||||||
|
Rather, copy the files named *.lua.dist to be renamed without .dist, then edit the .lua files as needed.
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
-- Section for example.com
|
||||||
|
|
||||||
|
VirtualHost "example.com"
|
||||||
|
enabled = false -- Remove this line to enable this host
|
||||||
|
|
||||||
|
-- Assign this host a certificate for TLS, otherwise it would use the one
|
||||||
|
-- set in the global section (if any).
|
||||||
|
-- Note that old-style SSL on port 5223 only supports one certificate, and will always
|
||||||
|
-- use the global one.
|
||||||
|
--ssl = {
|
||||||
|
-- key = "/etc/letsencrypt/live/example.com/privkey.pem";
|
||||||
|
-- certificate = "/etc/letsencrypt/live/example.com/fullchain.pem";
|
||||||
|
-- }
|
||||||
|
|
||||||
|
------ Components ------
|
||||||
|
-- You can specify components to add hosts that provide special services,
|
||||||
|
-- like multi-user conferences, and transports.
|
||||||
|
-- For more information on components, see http://prosody.im/doc/components
|
||||||
|
|
||||||
|
-- Set up a MUC (multi-user chat) room server on conference.example.com:
|
||||||
|
--Component "conference.example.com" "muc"
|
||||||
|
|
||||||
|
-- Set up a SOCKS5 bytestream proxy for server-proxied file transfers:
|
||||||
|
--Component "proxy.example.com" "proxy65"
|
||||||
|
|
||||||
|
---Set up an external component (default component port is 5347)
|
||||||
|
--Component "gateway.example.com"
|
||||||
|
-- component_secret = "password"
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
-- Section for localhost
|
||||||
|
|
||||||
|
-- This allows clients to connect to localhost. No harm in it.
|
||||||
|
VirtualHost "localhost"
|
||||||
|
|
||||||
@@ -0,0 +1,60 @@
|
|||||||
|
local data_path = '/var/lib/prosody';
|
||||||
|
|
||||||
|
local vhost = {
|
||||||
|
"accounts",
|
||||||
|
"account_details",
|
||||||
|
"account_roles",
|
||||||
|
"roster",
|
||||||
|
"vcard",
|
||||||
|
"private",
|
||||||
|
"blocklist",
|
||||||
|
"privacy",
|
||||||
|
"archive-archive",
|
||||||
|
"offline-archive",
|
||||||
|
"pubsub_nodes-pubsub",
|
||||||
|
"pep-pubsub",
|
||||||
|
"cron",
|
||||||
|
"smacks_h",
|
||||||
|
}
|
||||||
|
local muc = {
|
||||||
|
"persistent",
|
||||||
|
"config",
|
||||||
|
"state",
|
||||||
|
"muc_log-archive",
|
||||||
|
"cron",
|
||||||
|
};
|
||||||
|
local upload = {
|
||||||
|
"uploads-archive",
|
||||||
|
"upload_stats",
|
||||||
|
"cron",
|
||||||
|
}
|
||||||
|
|
||||||
|
input {
|
||||||
|
hosts = {
|
||||||
|
["example.com"] = vhost;
|
||||||
|
["conference.example.com"] = muc;
|
||||||
|
["share.example.com"] = upload;
|
||||||
|
};
|
||||||
|
type = "internal";
|
||||||
|
path = data_path;
|
||||||
|
}
|
||||||
|
|
||||||
|
output {
|
||||||
|
type = "sql";
|
||||||
|
driver = "SQLite3";
|
||||||
|
database = data_path.."/prosody.sqlite";
|
||||||
|
}
|
||||||
|
|
||||||
|
--[[
|
||||||
|
|
||||||
|
input {
|
||||||
|
type = "internal";
|
||||||
|
path = data_path;
|
||||||
|
}
|
||||||
|
output {
|
||||||
|
type = "sql";
|
||||||
|
driver = "SQLite3";
|
||||||
|
database = data_path.."/prosody.sqlite";
|
||||||
|
}
|
||||||
|
|
||||||
|
]]
|
||||||
@@ -0,0 +1,275 @@
|
|||||||
|
-- Prosody Example Configuration File
|
||||||
|
--
|
||||||
|
-- Information on configuring Prosody can be found on our
|
||||||
|
-- website at https://prosody.im/doc/configure
|
||||||
|
--
|
||||||
|
-- Tip: You can check that the syntax of this file is correct
|
||||||
|
-- when you have finished by running this command:
|
||||||
|
-- prosodyctl check config
|
||||||
|
-- If there are any errors, it will let you know what and where
|
||||||
|
-- they are, otherwise it will keep quiet.
|
||||||
|
--
|
||||||
|
-- Upgrading from a previous release? Check https://prosody.im/doc/upgrading
|
||||||
|
--
|
||||||
|
-- The only thing left to do is rename this file to remove the .dist ending, and fill in the
|
||||||
|
-- blanks. Good luck, and happy Jabbering!
|
||||||
|
|
||||||
|
|
||||||
|
---------- Server-wide settings ----------
|
||||||
|
-- Settings in this section apply to the whole server and are the default settings
|
||||||
|
-- for any virtual hosts
|
||||||
|
|
||||||
|
-- This is a (by default, empty) list of accounts that are admins
|
||||||
|
-- for the server. Note that you must create the accounts separately
|
||||||
|
-- (see https://prosody.im/doc/creating_accounts for info)
|
||||||
|
-- Example: admins = { "user1@example.com", "user2@example.net" }
|
||||||
|
admins = { }
|
||||||
|
|
||||||
|
-- This option allows you to specify additional locations where Prosody
|
||||||
|
-- will search first for modules. For additional modules you can install, see
|
||||||
|
-- the community module repository at https://modules.prosody.im/
|
||||||
|
-- For a local administrator it's common to place local modifications
|
||||||
|
-- under /usr/local/ hierarchy:
|
||||||
|
plugin_paths = { "/usr/local/lib/prosody/modules" }
|
||||||
|
|
||||||
|
-- This is the list of modules Prosody will load on startup.
|
||||||
|
-- Documentation for bundled modules can be found at: https://prosody.im/doc/modules
|
||||||
|
modules_enabled = {
|
||||||
|
|
||||||
|
-- Generally required
|
||||||
|
"disco"; -- Service discovery
|
||||||
|
"roster"; -- Allow users to have a roster. Recommended ;)
|
||||||
|
"saslauth"; -- Authentication for clients and servers. Recommended if you want to log in.
|
||||||
|
"tls"; -- Add support for secure TLS on c2s/s2s connections
|
||||||
|
|
||||||
|
-- Not essential, but recommended
|
||||||
|
"blocklist"; -- Allow users to block communications with other users
|
||||||
|
"bookmarks"; -- Synchronise the list of open rooms between clients
|
||||||
|
"carbons"; -- Keep multiple online clients in sync
|
||||||
|
"dialback"; -- Support for verifying remote servers using DNS
|
||||||
|
"limits"; -- Enable bandwidth limiting for XMPP connections
|
||||||
|
"pep"; -- Allow users to store public and private data in their account
|
||||||
|
"private"; -- Legacy account storage mechanism (XEP-0049)
|
||||||
|
"smacks"; -- Stream management and resumption (XEP-0198)
|
||||||
|
"vcard4"; -- User profiles (stored in PEP)
|
||||||
|
"vcard_legacy"; -- Conversion between legacy vCard and PEP Avatar, vcard
|
||||||
|
|
||||||
|
-- Nice to have
|
||||||
|
"account_activity"; -- Record time when an account was last used
|
||||||
|
"cloud_notify"; -- Push notifications for mobile devices
|
||||||
|
"csi_simple"; -- Simple but effective traffic optimizations for mobile devices
|
||||||
|
"invites"; -- Create and manage invites
|
||||||
|
"invites_adhoc"; -- Allow admins/users to create invitations via their client
|
||||||
|
"invites_register"; -- Allows invited users to create accounts
|
||||||
|
"ping"; -- Replies to XMPP pings with pongs
|
||||||
|
"register"; -- Allow users to register on this server using a client and change passwords
|
||||||
|
"time"; -- Let others know the time here on this server
|
||||||
|
"uptime"; -- Report how long server has been running
|
||||||
|
"version"; -- Replies to server version requests
|
||||||
|
--"mam"; -- Store recent messages to allow multi-device synchronization
|
||||||
|
--"turn_external"; -- Provide external STUN/TURN service for e.g. audio/video calls
|
||||||
|
|
||||||
|
-- Admin interfaces
|
||||||
|
"admin_adhoc"; -- Allows administration via an XMPP client that supports ad-hoc commands
|
||||||
|
"admin_shell"; -- Allow secure administration via 'prosodyctl shell'
|
||||||
|
|
||||||
|
-- HTTP modules
|
||||||
|
--"bosh"; -- Enable BOSH clients, aka "Jabber over HTTP"
|
||||||
|
--"http_openmetrics"; -- for exposing metrics to stats collectors
|
||||||
|
--"websocket"; -- XMPP over WebSockets
|
||||||
|
|
||||||
|
-- Other specific functionality
|
||||||
|
"posix"; -- POSIX functionality, sends server to background, enables syslog, etc.
|
||||||
|
--"announce"; -- Send announcement to all online users
|
||||||
|
--"groups"; -- Shared roster support
|
||||||
|
--"mimicking"; -- Prevent address spoofing
|
||||||
|
--"motd"; -- Send a message to users when they log in
|
||||||
|
--"proxy65"; -- Enables a file transfer proxy service which clients behind NAT can use
|
||||||
|
--"s2s_bidi"; -- Bi-directional server-to-server (XEP-0288)
|
||||||
|
--"server_contact_info"; -- Publish contact information for this service
|
||||||
|
--"tombstones"; -- Prevent registration of deleted accounts
|
||||||
|
--"watchregistrations"; -- Alert admins of registrations
|
||||||
|
--"welcome"; -- Welcome users who register accounts
|
||||||
|
}
|
||||||
|
|
||||||
|
-- These modules are auto-loaded, but should you want
|
||||||
|
-- to disable them then uncomment them here:
|
||||||
|
modules_disabled = {
|
||||||
|
-- "offline"; -- Store offline messages
|
||||||
|
-- "c2s"; -- Handle client connections
|
||||||
|
-- "s2s"; -- Handle server-to-server connections
|
||||||
|
}
|
||||||
|
|
||||||
|
-- Debian:
|
||||||
|
-- Please, don't change this option since /run/prosody/
|
||||||
|
-- is one of the few directories Prosody is allowed to write to
|
||||||
|
--
|
||||||
|
pidfile = "/run/prosody/prosody.pid";
|
||||||
|
|
||||||
|
-- Server-to-server authentication
|
||||||
|
-- Require valid certificates for server-to-server connections?
|
||||||
|
-- If false, other methods such as dialback (DNS) may be used instead.
|
||||||
|
|
||||||
|
s2s_secure_auth = true
|
||||||
|
|
||||||
|
-- Some servers have invalid or self-signed certificates. You can list
|
||||||
|
-- remote domains here that will not be required to authenticate using
|
||||||
|
-- certificates. They will be authenticated using other methods instead,
|
||||||
|
-- even when s2s_secure_auth is enabled.
|
||||||
|
|
||||||
|
--s2s_insecure_domains = { "insecure.example" }
|
||||||
|
|
||||||
|
-- Even if you disable s2s_secure_auth, you can still require valid
|
||||||
|
-- certificates for some domains by specifying a list here.
|
||||||
|
|
||||||
|
--s2s_secure_domains = { "jabber.org" }
|
||||||
|
|
||||||
|
|
||||||
|
-- Rate limits
|
||||||
|
-- Enable rate limits for incoming client and server connections. These help
|
||||||
|
-- protect from excessive resource consumption and denial-of-service attacks.
|
||||||
|
|
||||||
|
limits = {
|
||||||
|
c2s = {
|
||||||
|
rate = "10kb/s";
|
||||||
|
};
|
||||||
|
s2sin = {
|
||||||
|
rate = "30kb/s";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
-- Authentication
|
||||||
|
-- Select the authentication backend to use. The 'internal' providers
|
||||||
|
-- use Prosody's configured data storage to store the authentication data.
|
||||||
|
-- For more information see https://prosody.im/doc/authentication
|
||||||
|
|
||||||
|
authentication = "internal_hashed"
|
||||||
|
|
||||||
|
-- Many authentication providers, including the default one, allow you to
|
||||||
|
-- create user accounts via Prosody's admin interfaces. For details, see the
|
||||||
|
-- documentation at https://prosody.im/doc/creating_accounts
|
||||||
|
|
||||||
|
|
||||||
|
-- Storage
|
||||||
|
-- Select the storage backend to use. By default Prosody uses flat files
|
||||||
|
-- in its configured data directory, but it also supports more backends
|
||||||
|
-- through modules. An "sql" backend is included by default, but requires
|
||||||
|
-- additional dependencies. See https://prosody.im/doc/storage for more info.
|
||||||
|
|
||||||
|
--storage = "sql" -- Default is "internal" (Debian: "sql" requires one of the
|
||||||
|
-- lua-dbi-sqlite3, lua-dbi-mysql or lua-dbi-postgresql packages to work)
|
||||||
|
|
||||||
|
-- For the "sql" backend, you can uncomment *one* of the below to configure:
|
||||||
|
--sql = { driver = "SQLite3", database = "prosody.sqlite" } -- Default. 'database' is the filename.
|
||||||
|
--sql = { driver = "MySQL", database = "prosody", username = "prosody", password = "secret", host = "localhost" }
|
||||||
|
--sql = { driver = "PostgreSQL", database = "prosody", username = "prosody", password = "secret", host = "localhost" }
|
||||||
|
|
||||||
|
|
||||||
|
-- Archiving configuration
|
||||||
|
-- If mod_mam is enabled, Prosody will store a copy of every message. This
|
||||||
|
-- is used to synchronize conversations between multiple clients, even if
|
||||||
|
-- they are offline. This setting controls how long Prosody will keep
|
||||||
|
-- messages in the archive before removing them.
|
||||||
|
|
||||||
|
archive_expires_after = "1w" -- Remove archived messages after 1 week
|
||||||
|
|
||||||
|
-- You can also configure messages to be stored in-memory only. For more
|
||||||
|
-- archiving options, see https://prosody.im/doc/modules/mod_mam
|
||||||
|
|
||||||
|
|
||||||
|
-- Audio/video call relay (STUN/TURN)
|
||||||
|
-- To ensure clients connected to the server can establish connections for
|
||||||
|
-- low-latency media streaming (such as audio and video calls), it is
|
||||||
|
-- recommended to run a STUN/TURN server for clients to use. If you do this,
|
||||||
|
-- specify the details here so clients can discover it.
|
||||||
|
-- Find more information at https://prosody.im/doc/turn
|
||||||
|
|
||||||
|
-- Specify the address of the TURN service (you may use the same domain as XMPP)
|
||||||
|
--turn_external_host = "turn.example.com"
|
||||||
|
|
||||||
|
-- This secret must be set to the same value in both Prosody and the TURN server
|
||||||
|
--turn_external_secret = "your-secret-turn-access-token"
|
||||||
|
|
||||||
|
|
||||||
|
-- Logging configuration
|
||||||
|
-- For advanced logging see https://prosody.im/doc/logging
|
||||||
|
--
|
||||||
|
-- Debian:
|
||||||
|
-- Logs info and higher to /var/log
|
||||||
|
-- Logs errors to syslog also
|
||||||
|
log = {
|
||||||
|
-- Log files (change 'info' to 'debug' for debug logs):
|
||||||
|
info = "/var/log/prosody/prosody.log";
|
||||||
|
error = "/var/log/prosody/prosody.err";
|
||||||
|
-- Syslog:
|
||||||
|
{ levels = { "error" }; to = "syslog"; };
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
-- Uncomment to enable statistics
|
||||||
|
-- For more info see https://prosody.im/doc/statistics
|
||||||
|
-- statistics = "internal"
|
||||||
|
|
||||||
|
|
||||||
|
-- Certificates
|
||||||
|
-- Every virtual host and component needs a certificate so that clients and
|
||||||
|
-- servers can securely verify its identity. Prosody will automatically load
|
||||||
|
-- certificates/keys from the directory specified here.
|
||||||
|
-- For more information, including how to use 'prosodyctl' to auto-import certificates
|
||||||
|
-- (from e.g. Let's Encrypt) see https://prosody.im/doc/certificates
|
||||||
|
|
||||||
|
-- Location of directory to find certificates in (relative to main config file):
|
||||||
|
certificates = "certs"
|
||||||
|
|
||||||
|
----------- Virtual hosts -----------
|
||||||
|
-- You need to add a VirtualHost entry for each domain you wish Prosody to serve.
|
||||||
|
-- Settings under each VirtualHost entry apply *only* to that host.
|
||||||
|
-- It's customary to maintain VirtualHost entries in separate config files
|
||||||
|
-- under /etc/prosody/conf.d/ directory. Examples of such config files can
|
||||||
|
-- be found in /etc/prosody/conf.avail/ directory.
|
||||||
|
|
||||||
|
------ Additional config files ------
|
||||||
|
-- For organizational purposes you may prefer to add VirtualHost and
|
||||||
|
-- Component definitions in their own config files. This line includes
|
||||||
|
-- all config files in /etc/prosody/conf.d/
|
||||||
|
|
||||||
|
VirtualHost "localhost"
|
||||||
|
-- Prosody requires at least one enabled VirtualHost to function. You can
|
||||||
|
-- safely remove or disable 'localhost' once you have added another.
|
||||||
|
|
||||||
|
|
||||||
|
--VirtualHost "example.com"
|
||||||
|
|
||||||
|
------ Components ------
|
||||||
|
-- You can specify components to add hosts that provide special services,
|
||||||
|
-- like multi-user conferences, and transports.
|
||||||
|
-- For more information on components, see https://prosody.im/doc/components
|
||||||
|
|
||||||
|
---Set up a MUC (multi-user chat) room server on conference.example.com:
|
||||||
|
--Component "conference.example.com" "muc"
|
||||||
|
--- Store MUC messages in an archive and allow users to access it
|
||||||
|
--modules_enabled = { "muc_mam" }
|
||||||
|
|
||||||
|
---Set up a file sharing component
|
||||||
|
--Component "share.example.com" "http_file_share"
|
||||||
|
|
||||||
|
---Set up an external component (default component port is 5347)
|
||||||
|
--
|
||||||
|
-- External components allow adding various services, such as gateways/
|
||||||
|
-- bridges to non-XMPP networks and services. For more info
|
||||||
|
-- see: https://prosody.im/doc/components#adding_an_external_component
|
||||||
|
--
|
||||||
|
--Component "gateway.example.com"
|
||||||
|
-- component_secret = "password"
|
||||||
|
|
||||||
|
Include "conf.d/*.cfg.lua"
|
||||||
|
|
||||||
|
---------- End of the Prosody Configuration file ----------
|
||||||
|
-- You usually **DO NOT** want to add settings here at the end, as they would
|
||||||
|
-- only apply to the last defined VirtualHost or Component.
|
||||||
|
--
|
||||||
|
-- Settings for the global section should go higher up, before the first
|
||||||
|
-- VirtualHost or Component line, while settings intended for specific hosts
|
||||||
|
-- should go under the corresponding VirtualHost or Component line.
|
||||||
|
--
|
||||||
|
-- For more information see https://prosody.im/doc/configure
|
||||||
@@ -1,2 +1,5 @@
|
|||||||
|
|
||||||
COMPOSE_BAKE=true
|
COMPOSE_BAKE=true
|
||||||
|
|
||||||
|
CPU=0.50
|
||||||
|
MEM=0.50G
|
||||||
|
|||||||
Reference in New Issue
Block a user