git ssb

0+

cel / sslh



Branch:
Yves Rutschle committed fix logging to specified facilityLatest: f4d2a8d on 7/22/2017, 3:20:45 PM
📄.gitignore
📄COPYING
📄ChangeLog
📄Makefile
📄README.MacOSX
📄README.md
📄TODO
📄basic.cfg
📄common.c
📄common.h
📄echosrv.c
📄example.cfg
📄genver.sh
📄probe.c
📄probe.h
📁scripts
📄sslh-fork.c
📄sslh-main.c
📄sslh-select.c
📄sslh.pod
📄systemd-sslh-generator.c
📄t
📄t_load
📄tls.c
📄tls.h
README.MacOSX
1
2sslh is available for Mac OS X via MacPorts. If you have
3MacPorts installed on your system you can install sslh by
4executing the following in the Terminal:
5
6port install sslh
7
8Also, the following is a helpful launchd configuration that
9covers the most common use case of sslh. Save the following
10into a text file, e.g.
11/Library/LaunchDaemons/net.rutschle.sslh.plist, then load it
12with launchctl or simply reboot.
13
14----BEGIN FILE----
15<?xml version="1.0" encoding="UTF-8"?>
16<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
17<plist version="1.0">
18<dict>
19 <key>Disabled</key>
20 <false/>
21 <key>KeepAlive</key>
22 <true/>
23 <key>Label</key>
24 <string>net.rutschle.sslh</string>
25 <key>ProgramArguments</key>
26 <array>
27 <string>/opt/local/sbin/sslh</string>
28 <string>-f</string>
29 <string>-v</string>
30 <string>-u</string>
31 <string>nobody</string>
32 <string>-p</string>
33 <string>0.0.0.0:443</string>
34 <string>--ssh</string>
35 <string>localhost:22</string>
36 <string>--ssl</string>
37 <string>localhost:443</string>
38 </array>
39 <key>QueueDirectories</key>
40 <array/>
41 <key>RunAtLoad</key>
42 <true/>
43 <key>StandardErrorPath</key>
44 <string>/Library/Logs/sslh.log</string>
45 <key>StandardOutPath</key>
46 <string>/Library/Logs/sslh.log</string>
47 <key>WatchPaths</key>
48 <array/>
49</dict>
50</plist>
51
52----END FILE----
53
54
55

Built with git-ssb-web