Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

17 linhas
672 B

  1. %% Configuration file for specifying settings for HTTP servers which this
  2. %% client will connect to.
  3. %% The format of each entry is (one per line)
  4. %% {dest, Hostname, Portnumber, MaxSessions, MaxPipelineSize, Options}.
  5. %%
  6. %% where Hostname = string()
  7. %% Portnumber = integer()
  8. %% MaxSessions = integer()
  9. %% MaxPipelineSize = integer()
  10. %% Options = [{Tag, Val} | ...]
  11. %% Tag = term()
  12. %% Value = term()
  13. %% e.g.
  14. %% {dest, "covig02", 8000, 10, 10, [{is_ssl, true}, {ssl_options, [option()]}]}.
  15. %% If SSL is to be used, both the options, is_ssl and ssl_options MUST be specified
  16. %% where option() is all options supported in the ssl module