Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Splunk_Docker/src/commit/76bb868089bcf1ded16cb4bfebe3f2b200436636/files/splunkbeta/openssl/misc/c_issuer
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
#!/bin/sh
|
|
#
|
|
# print out the issuer
|
|
#
|
|
|
|
for i in $*
|
|
do
|
|
n=`openssl x509 -issuer -noout -in $i`
|
|
echo "$i $n"
|
|
done
|