Apache Answer throws OpenID connect error
-
Have you tried restarting the app? (just in case)
Because normally on every restart the app sets / updates the oidc config.What we can try is to manually delete that config and restart the app.
To delete this go to your web-terminal and copy-paste:
mysql --user=${CLOUDRON_MYSQL_USERNAME} --password=${CLOUDRON_MYSQL_PASSWORD} --host=${CLOUDRON_MYSQL_HOST} ${CLOUDRON_MYSQL_DATABASE} -e "DELETE FROM plugin_config WHERE plugin_slug_name='basic_connector'"
and then restart the app.
Then a complete fresh config set should be present, printable by the same command again.
mysql --user=${CLOUDRON_MYSQL_USERNAME} --password=${CLOUDRON_MYSQL_PASSWORD} --host=${CLOUDRON_MYSQL_HOST} ${CLOUDRON_MYSQL_DATABASE} -e "SELECT * FROM plugin_config WHERE plugin_slug_name='basic_connector' \G"
Then we can compare both outputs if something has changed or is missing or got added yada yada.
Maybe just the restart, or deletion and restart is already enough.