sip-router-tls.cfg 368 B

12345678910111213141516171819202122232425
  1. #
  2. # This is a minimalistic SER configuration file which can
  3. # be used to test the TLS module.
  4. #
  5. debug=4 # debug level (cmd line: -dddddddddd)
  6. fork=yes
  7. log_stderror=yes
  8. children=1
  9. enable_tls=1
  10. loadpath "./modules"
  11. loadmodule "sl"
  12. loadmodule "tls"
  13. modparam("tls", "config", "tls.cfg")
  14. listen=tls:127.0.0.1:5061
  15. route {
  16. sl_reply("200", "OK");
  17. break;
  18. }