123456789101112131415161718192021222324252627282930313233343536 |
- defmodule Config do
- def config do
- [webserver:
- [http_host: "localhost",
- http_port: 8080,
- acceptors: 100,
- ssl: false,
- cacertfile_path: "",
- certfile_path: "",
- keyfile_path: ""
- ],
- ws:
- [ws_port: 8080,
- ws_mod: :Handler
- ],
- use_internationalization: false,
- localization:
- [default_locale: :en_US,
- use_locales: [:en_US]
- ],
- use_sessions: false,
- session:
- [max_age: 1440
- ],
- db:
- [
- db_host: "",
- db_port: 5000,
- db_username: "",
- db_password: ""
- ],
- ]
- end
- end
|