I’m Gregor, I don’t post a lot, but I do make loads of comments.

  • 20 Posts
  • 69 Comments
Joined 5 months ago
cake
Cake day: July 21st, 2024

help-circle
  • Here’s my config

    {
      # for more info about the config, check out the documentation
      # https://join-lemmy.org/docs/en/administration/configuration.html
    
      database: {
        host: postgres
        password: "redacted"
        # Alternative way:
        #uri: "postgresql://lemmy:{{ postgres_password }}@postgres/lemmy"
      }
      hostname: "gregtech.eu"
      pictrs: {
        url: "http://pictrs:8080/"
        api_key: "redacted"
      }
      email: {
        smtp_server: "smtp.sendgrid.net:587"
        smtp_from_address: "lemmy@lemmy.gregtech.eu"
        tls_type: "starttls"
        smtp_login: "apikey"
        smtp_password: "redacted"
      }
       # Parameters for automatic configuration of new instance (only used at first start)
      setup: {
        # Username for the admin user
        admin_username: "gregor"
        # Password for the admin user. It must be between 10 and 60 characters.
        admin_password: "redacted"
        # Name of the site, can be changed later. Maximum 20 characters.
        site_name: "Gremmy"
        # Email for the admin user (optional, can be omitted and set later through the website)
        admin_email: "redacted"
      }
    }