github.com/cs3org/reva/v2@v2.27.7/examples/siteacc/siteacc.toml (about)

     1  [http]
     2  address = "0.0.0.0:9600"
     3  
     4  # Security settings
     5  [http.services.siteacc.security]
     6  creds_passphrase = "superdupersecret"
     7  
     8  # Connection to the GOCDB
     9  [http.services.siteacc.gocdb]
    10  url = "https://sciencemesh-test.uni-muenster.de/gocdb/"
    11  write_url = "https://sciencemesh-test.uni-muenster.de/gocdbpi/"
    12  apikey = "verysecret"
    13  
    14  # Set up the storage driver
    15  [http.services.siteacc.storage]
    16  driver = "file"
    17  [http.services.siteacc.storage.file]
    18  sites_file = "/var/revad/sites.json"
    19  accounts_file = "/var/revad/accounts.json"
    20  
    21  # Email related settings
    22  [http.services.siteacc.email]
    23  notifications_mail = "science.mesh@example.com"
    24  
    25  # The SMTP server used for sending emails
    26  [http.services.siteacc.email.smtp]
    27  sender_mail = "science.mesh@example.com"
    28  smtp_server = "mail.example.com"
    29  smtp_port = 25
    30  disable_auth = true
    31  
    32  # The webserver section defines various webserver-related settings
    33  [http.services.siteacc.webserver]
    34  url = "https://sciencemesh-test.uni-muenster.de/api/accounts/"
    35  session_timeout = 60