-
Notifications
You must be signed in to change notification settings - Fork 114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
certificate verify failed: unable to get local issuer certificate #46
Labels
bug
Something isn't working
Comments
I'm having the same issue with and without the server. If it's anything besides |
Same issue here when trying to download Click to see error
|
Im running this on a M1 Mac Book Pro. I fixed this by removing the cert sharing thats setup in the scripts. Delete that shit if [[ -d /etc/ssl/certs ]]; then
# This directory seems to usually have symlinks to other directories
docker_run_args+=('-v' '/etc/ssl/certs:/etc/ssl/certs:ro')
# Create temp file with all certificate directories found
cert_dirs_file="$(mktemp)"
function finish {
rm -rf "${cert_dirs_file}"
}
trap finish EXIT
while read -r cert_path; do
# Follow symlinks and record directory paths
cert_path="$(readlink -f "${cert_path}")"
cert_dir="$(dirname "${cert_path}")"
echo $cert_dir >> "${cert_dirs_file}"
done < <(find /etc/ssl/certs -name '*.pem' -type l)
# Map unique certificate directories
while read -r cert_dir; do
docker_run_args+=('-v' "${cert_dir}:${cert_dir}:ro")
done < <(sort < "${cert_dirs_file}" | uniq)
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The example with
mimic3 'Hello world.' | aplay
works just fine. However, when I startmimic3-server
, I am greeted by some errors:Then, after opening the web-interface, if I select any language other than EN-UK, the web interface displays this error:
URLError: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1123)>
. Below I give the more detailed output from the console:Steps to reproduce the behavior:
mimic3-server
and openhttp://localhost:59125
URLError: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1123)>
Expected behavior
The text in the input field should be spoken in the selected (i.e. default) language.
Environment (please complete the following information):
Additional context
No modifications to source code or config files.
If I change in the web-interface the language to
English (UK)
, it is spoken as it is supposed to be.The text was updated successfully, but these errors were encountered: