diff options
| author | 2022-11-17 15:04:35 +0100 | |
|---|---|---|
| committer | 2022-11-17 15:04:35 +0100 | |
| commit | c56998ff0568f7fa53665e8820fda211098ebac3 (patch) | |
| tree | 81a99a94b3bff5e2557daf96cdf19f5da762b143 /example | |
| parent | [chore] Replace blocking Floc with Topics. (#1068) (diff) | |
| download | gotosocial-c56998ff0568f7fa53665e8820fda211098ebac3.tar.xz | |
[docs] add account domain documentation (#1065)
* [docs] add account domain documentation
* add note about parent/subdomain
Diffstat (limited to 'example')
| -rw-r--r-- | example/config.yaml | 7 | 
1 files changed, 7 insertions, 0 deletions
diff --git a/example/config.yaml b/example/config.yaml index e0ec64961..cd5b0b274 100644 --- a/example/config.yaml +++ b/example/config.yaml @@ -50,11 +50,18 @@ host: "localhost"  # String. Domain to use when federating profiles. This is useful when you want your server to be at  # eg., "gts.example.org", but you want the domain on accounts to be "example.org" because it looks better  # or is just shorter/easier to remember. +#  # To make this setting work properly, you need to redirect requests at "example.org/.well-known/webfinger"  # to "gts.example.org/.well-known/webfinger" so that GtS can handle them properly. +#  # You should also redirect requests at "example.org/.well-known/nodeinfo" in the same way.  # An empty string (ie., not set) means that the same value as 'host' will be used. +#  # DO NOT change this after your server has already run once, or you will break things! +# +# Please read the appropriate section of the installation guide before you go messing around with this setting: +# https://docs.gotosocial.org/installation_guide/advanced/#can-i-host-my-instance-at-fediexampleorg-but-have-just-exampleorg-in-my-username +#  # Examples: ["example.org","server.com"]  # Default: ""  account-domain: ""  | 
