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_hash
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
#!/bin/sh
|
|
# print out the hash values
|
|
#
|
|
|
|
for i in $*
|
|
do
|
|
h=`openssl x509 -hash -noout -in $i`
|
|
echo "$h.0 => $i"
|
|
done
|