I am developing a web app with which it should be possible to use the sensor data in the smartphone. The WebApp is developed with Angular and the backend is nodejs, apollo, prisma, graphql.
The database (mysql) is in a Docker container.
In order to be able to use the sensor data, the server must be hosted using https. But this is exactly the problem.
google chrome gives me an error message that mixed content is blocked. I assume that it is because the database is accessible via http and the webapp via https.
is there a possibility to do the whole thing in the form or does the db server also have to use an HTTPS protocol? If so, how should this be done?
Thanks for the help