summarylogtreecommitdiffstats
path: root/sslh.cfg
diff options
context:
space:
mode:
authorMatthewacon2019-05-24 12:48:04 -0400
committerMatthewacon2019-05-24 12:48:04 -0400
commitf3214131d7b84ed5304d1cf11a2dabc817de6dba (patch)
treeb4dc933e446c5a1a5c38197544961ba5d928cc6a /sslh.cfg
downloadaur-f3214131d7b84ed5304d1cf11a2dabc817de6dba.tar.gz
Initial commit
Diffstat (limited to 'sslh.cfg')
-rw-r--r--sslh.cfg29
1 files changed, 29 insertions, 0 deletions
diff --git a/sslh.cfg b/sslh.cfg
new file mode 100644
index 000000000000..3a22a6e828e5
--- /dev/null
+++ b/sslh.cfg
@@ -0,0 +1,29 @@
+# Default Arch configuration
+# You can find more examples in /usr/share/doc/sslh
+
+verbose: false;
+foreground: true;
+inetd: false;
+numeric: false;
+transparent: false;
+timeout: 2;
+user: "sslh";
+pidfile: "/run/sslh.pid";
+
+
+listen:
+(
+ { host: "::0"; port: "443"; }
+);
+
+protocols:
+(
+ { name: "ssh"; service: "ssh"; host: "localhost"; port: "22"; probe: "builtin"; },
+ { name: "openvpn"; host: "localhost"; port: "1194"; probe: "builtin"; },
+ { name: "xmpp"; host: "localhost"; port: "5222"; probe: "builtin"; },
+ { name: "http"; host: "localhost"; port: "80"; probe: "builtin"; },
+ { name: "ssl"; host: "localhost"; port: "8443"; probe: "builtin"; },
+ { name: "anyprot"; host: "localhost"; port: "8443"; probe: "builtin"; }
+);
+
+# vim:set ts=4 sw=4 et: