7 lines
221 B
Bash
7 lines
221 B
Bash
|
#!/bin/bash
|
||
|
#
|
||
|
# 20210816 petbau@linuxnet.ch / check proxy access for https
|
||
|
#
|
||
|
openssl s_client -proxy [proxy-ip-address]:9090 -connect fcm.googleapis.com -showcerts -CAfile /usr/local/share/ca
|
||
|
-certificates/PROXYSUBCA.crt
|