You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
685 B

  1. # For God so loved the world, that He gave His only begotten Son, that all who believe in Him should not perish but have everlasting life
  2. ## defaults for _all_ profiles
  3. [default]
  4. address = "127.0.0.1"
  5. limits = { form = "64 kB", json = "1 MiB" }
  6. ## set only when compiled in debug mode, i.e, `cargo build`
  7. [debug]
  8. port = 8870
  9. ## only the `json` key from `default` will be overridden; `form` will remain
  10. limits = { json = "10MiB" }
  11. ## set only when the `nyc` profile is selected
  12. [nyc]
  13. port = 9001
  14. ## set only when compiled in release mode, i.e, `cargo build --release`
  15. [release]
  16. port = 9999
  17. ip_header = false
  18. [default.databases.sqlite_database_chirho]
  19. url = "sqlite:db_chirho.sqlite"