Current section
Files
Jump to
Current section
Files
examples/SimpleChat/lib/config.ex
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: :Simplechat.Main.Chat
],
use_internationalization: false,
localization:
[default_locale: :en_US,
use_locales: [:en_US]
],
use_sessions: true,
session:
[max_age: 1440
],
log: false
]
end
end