Skip to content
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

VH 1314 - Allow V2X-Hub Web UI browser access without self signed certificate warning acceptance #622

2 changes: 2 additions & 0 deletions configuration/initialization.sh
Original file line number Diff line number Diff line change
Expand Up @@ -150,3 +150,5 @@ cd "$mysqlDir" || return # return in case cd fails

chromium-browser "http://127.0.0.1" > /dev/null 2>&1 &
chromium-browser "https://127.0.0.1:19760" > /dev/null 2>&1 &
google-chrome --ignore-certificate-errors localhost
jwillmartin marked this conversation as resolved.
Show resolved Hide resolved
chromium-browser --ignore-certificate-errors localhost
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We only need one browser and we also no longer need the "https://127.0.0.1:19760" tab right.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's true. I have removed these lines from the script now:

chromium-browser "http://127.0.0.1" > /dev/null 2>&1 &
chromium-browser "https://127.0.0.1:19760" > /dev/null 2>&1 &

Loading