]> Untitled Git - lemmy.git/commitdiff
Merge branch 'master' into federation
authorDessalines <tyhou13@gmx.com>
Sat, 27 Jun 2020 14:54:08 +0000 (10:54 -0400)
committerDessalines <tyhou13@gmx.com>
Sat, 27 Jun 2020 14:54:08 +0000 (10:54 -0400)
1  2 
server/config/defaults.hjson
ui/src/utils.ts

index 61951321e0689e6a849a8f4cdbcd629a195a3eed,482a720881ac2410fa83d73204f0b74a2421a6c9..348368f19681be37c8948763b4a30b99924c5af2
    port: 8536
    # json web token for authorization between server and client
    jwt_secret: "changeme"
-   # The dir for the front end
+   # The location of the frontend
    front_end_dir: "../ui/dist"
 -  # whether to enable activitypub federation. this feature is in alpha, do not enable in production, as might
 -  # cause problems like remote instances fetching and permanently storing bad data.
 -  federation_enabled: false
    # rate limits for various user actions, by user ip
    rate_limit: {
      # maximum number of messages created in interval
      # interval length for registration limit
      register_per_second: 3600
    }
 +  # settings related to activitypub federation
 +  federation: {
 +    # whether to enable activitypub federation. this feature is in alpha, do not enable in production.
 +    enabled: false
 +    # whether tls is required for activitypub. only disable this for debugging, never for producion.
 +    tls_enabled: true
 +    # comma seperated list of instances with which federation is allowed
 +    allowed_instances: ""
 +  }
  #  # email sending configuration
  #  email: {
- #    # hostname of the smtp server
+ #    # hostname and port of the smtp server
  #    smtp_server: ""
  #    # login name for smtp server
  #    smtp_login: ""
diff --cc ui/src/utils.ts
Simple merge