You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
1.1 KiB

  1. diff --git a/basic.cfg b/basic.cfg
  2. index 54a799c..d938767 100644
  3. --- a/basic.cfg
  4. +++ b/basic.cfg
  5. @@ -1,3 +1,7 @@
  6. +# **** Attention OpenWRT/LEDE Users ****
  7. +# sslh command line arguments override arguments defined in this
  8. +# configuration file (UCI uses command line arguments)
  9. +
  10. # This is a basic configuration file that should provide
  11. # sensible values for "standard" setup.
  12. @@ -14,15 +18,16 @@ pidfile: "/var/run/sslh.pid";
  13. # Change hostname with your external address name.
  14. listen:
  15. (
  16. - { host: "thelonious"; port: "443"; }
  17. + { host: "0.0.0.0"; port: "443"; },
  18. + { host: "[::]"; port: "443"; }
  19. );
  20. protocols:
  21. (
  22. { name: "ssh"; service: "ssh"; host: "localhost"; port: "22"; },
  23. { name: "openvpn"; host: "localhost"; port: "1194"; },
  24. - { name: "xmpp"; host: "localhost"; port: "5222"; },
  25. - { name: "http"; host: "localhost"; port: "80"; },
  26. +# { name: "xmpp"; host: "localhost"; port: "5222"; },
  27. +# { name: "http"; host: "localhost"; port: "80"; },
  28. { name: "ssl"; host: "localhost"; port: "443"; log_level: 0; },
  29. { name: "anyprot"; host: "localhost"; port: "443"; }
  30. );