continuwuity.toml
56 lines 1.7 kB view raw
1[global] 2 3# The server_name is the pretty name of this server. It is used as a 4# suffix for user and room IDs/aliases. 5# 6# See the docs for reverse proxying and delegation: 7# https://continuwuity.org/deploying/generic.html#setting-up-the-reverse-proxy 8# 9# Also see the `[global.well_known]` config section at the very bottom. 10# 11# Examples of delegation: 12# - https://puppygock.gay/.well-known/matrix/server 13# - https://puppygock.gay/.well-known/matrix/client 14# 15# YOU NEED TO EDIT THIS. THIS CANNOT BE CHANGED AFTER WITHOUT A DATABASE 16# WIPE. 17# 18# example: "continuwuity.org" 19# 20server_name = "ip-logger.com" 21 22# The default address (IPv4 or IPv6) continuwuity will listen on. 23# 24# If you are using Docker or a container NAT networking setup, this must 25# be "0.0.0.0". 26# 27# To listen on multiple addresses, specify a vector e.g. ["127.0.0.1", 28# "::1"] 29# 30address = ["0.0.0.0"] 31 32# The port(s) continuwuity will listen on. 33# 34# For reverse proxying, see: 35# https://continuwuity.org/deploying/generic.html#setting-up-the-reverse-proxy 36# 37# If you are using Docker, don't change this, you'll need to map an 38# external port to this. 39# 40# To listen on multiple ports, specify a vector e.g. [8080, 8448] 41# 42port = 8008 43 44# The UNIX socket continuwuity will listen on. 45# 46# continuwuity cannot listen on both an IP address and a UNIX socket. If 47# listening on a UNIX socket, you MUST remove/comment the `address` key. 48# 49# Remember to make sure that your reverse proxy has access to this socket 50# file, either by adding your reverse proxy to the appropriate user group 51# or granting world R/W permissions with `unix_socket_perms` (666 52# minimum). 53# 54# example: "/run/continuwuity/continuwuity.sock" 55# 56#unix_socket_path =