TLS Proxy with Client Certificate Authentication?

agolangf · · 625 次点击    
这是一个分享于 的资源,其中的信息可能已经有所发展或是发生改变。
<p>I&#39;m looking for a simple TLS proxy which supports client certificate authentication, and I remember that I saw one written in Go and posted here a while back, but I can&#39;t seem to find it. Does anybody know of one that exists? The idea is for it to sit on a web server and proxy authenticated connections (not security-critical, so it doesn&#39;t need to be well-vetted; it just needs to work).</p> <hr/>**评论:**<br/><br/>jammerlt: <pre><p>Why not use nginx?</p></pre>Jalaska13: <pre><p>Wasn&#39;t aware nginx supported this. I&#39;ll take a look.</p></pre>jammerlt: <pre><p>You can even get nginx to do TLS termination, and pass the client certificate as part of the headers.</p></pre>vietnq: <pre><p>I&#39;ve been working on this <a href="https://github.com/goburrow/netforward" rel="nofollow">https://github.com/goburrow/netforward</a> which might meet your need.</p> <pre><code>nf -certFile /to/cert.crt -keyFile /to/cert.key -caFile /to/ca.crt -address :8443 -remote.address :8080 </code></pre></pre>

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

625 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传