Skip to content

Commit

Permalink
feat: listen on ipv6
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhiljha committed Apr 25, 2024
1 parent 662e88b commit c3acaa2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .transpire.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,17 @@ def objects():
"listeners": {
"127.0.0.1:6667": None,
"[::1]:6667": None,
":6697": {

"[::]:6697": {
"tls": {"cert": "/etc/ssl/server_certs/tls.crt", "key": "/etc/ssl/server_certs/tls.key"},
"proxy": False,
"min-tls-version": 1.2,
},
":8097": {
"[::]:8097": {
"websocket": True,
"tls": {"cert": "/etc/ssl/server_certs/tls.crt", "key": "/etc/ssl/server_certs/tls.key"},
},

},
"unix-bind-mode": 511,
"tor-listeners": {
Expand Down

0 comments on commit c3acaa2

Please sign in to comment.