blob: 02d5cb9c18088b160e797af55dae261ee41ba772 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
--- a/basic.cfg
+++ b/basic.cfg
@@ -2,20 +2,17 @@
# sensible values for "standard" setup.
verbose: false;
-foreground: false;
-inetd: false;
numeric: false;
transparent: false;
timeout: 2;
user: "nobody";
-pidfile: "/var/run/sslh.pid";
chroot: "/var/empty";
-# Change hostname with your external address name.
+# Change host with your external address name.
listen:
(
- { host: "thelonious"; port: "443"; }
+ { host: "0.0.0.0"; port: "443"; }
);
protocols:
@@ -24,7 +21,6 @@
{ name: "openvpn"; host: "localhost"; port: "1194"; },
{ name: "xmpp"; host: "localhost"; port: "5222"; },
{ name: "http"; host: "localhost"; port: "80"; },
- { name: "ssl"; host: "localhost"; port: "443"; log_level: 0; },
+ { name: "tls"; host: "localhost"; port: "443"; log_level: 0; },
{ name: "anyprot"; host: "localhost"; port: "443"; }
);
-
|