jmjl / SNIProxy config example
0 likes
0 forks
1 files
Last active
https://github.com/dlundquist/sniproxy's README
1 | user daemon |
2 | |
3 | pidfile /tmp/sniproxy.pid |
4 | |
5 | error_log { |
6 | syslog daemon |
7 | priority notice |
8 | } |
9 | |
10 | listener 127.0.0.1:443 { |
jmjl / teapotchat-checkcert
0 likes
0 forks
1 files
Last active
This is the script that checks SSL for the IRC servers in the teapot.chat network, but can be adapted easily.
1 | #!/bin/python3 |
2 | import os,subprocess,re |
3 | def emit(msg): |
4 | print(f" {msg}") |
5 | |
6 | servers = ["cardamom","coffee","earlgrey"] |
7 | network = "teapot.chat" |
8 | ssl_port = 6697 |
9 | print("Here's the report:") |
10 | print("Servers:") |
Newer
Older