Browse Source

- a set of minimalistic config files for testing purposes

Jan Janak 17 years ago
parent
commit
3018841f0f
1 changed files with 25 additions and 0 deletions
  1. 25 0
      modules/tls/ser-tls.cfg

+ 25 - 0
modules/tls/ser-tls.cfg

@@ -0,0 +1,25 @@
+#
+# This is a minimalistic SER configuration file which can
+# be used to test the TLS module.
+#
+debug=4         # debug level (cmd line: -dddddddddd)
+fork=yes
+log_stderror=yes
+
+children=1
+enable_tls=1
+
+loadpath   "./modules"
+
+loadmodule "sl"
+loadmodule "tls"
+
+modparam("tls", "config", "tls.cfg")
+
+listen=tls:127.0.0.1:5061
+
+route {
+	sl_reply("200", "OK");
+	break;
+}
+