Dirk Klimpel
Dirk Klimpel
see also: #6572 and #7023
It is related to: https://github.com/matrix-org/matrix-authentication-service/issues/2187#issuecomment-1879831757
A real OIDC login workflow is required for synapse-admin with MAS. An example could be under certain circumstances - https://github.com/marmelab/ra-auth-auth0/blob/main/packages/ra-auth-auth0/Readme.md - https://github.com/marmelab/ra-example-oauth
Duplicate to - #176 ?
Described solution with React Admin 4: https://marmelab.com/react-admin/ToggleThemeButton.html
> Reverted. The changes don't work with the latest `marked` (v12.0.1). Do you have some more details? Unit tests does not failing.
@MikeMcC399 Do you have a hint for a better image? At the moment it is: https://github.com/tcort/markdown-link-check/blob/71ccb4129a1fa86f6904f35c1b26348dfce1438d/Dockerfile#L1# It is currently: sha: 3687802f25d2da52901b6a30d9bfaed81234b2ec63e52c01fbd1fc176fdbabbb - [22.2.0-alpine3.20](https://hub.docker.com/layers/library/node/22.2.0-alpine3.20/images/sha256-3687802f25d2da52901b6a30d9bfaed81234b2ec63e52c01fbd1fc176fdbabbb?context=explore) - [alpine](https://hub.docker.com/layers/library/node/alpine/images/sha256-3687802f25d2da52901b6a30d9bfaed81234b2ec63e52c01fbd1fc176fdbabbb?context=explore)
During the analysis and debugging, I noticed that no consistent distinction is made between `http_proxy` and `https_proxy`. It is sufficient if one of the two is set, then this is...
My test snipped: ```js var needle = require('needle'); needle.get('https://github.com/status', function (error, response) { if (!error && response.statusCode == 200) console.log(response.body); else console.log(error); }); ``` The results (via proxy: `export HTTPS_PROXY=http://localhost:8888`):...
I have found a workaround for me: ```js var { ProxyAgent } = require('proxy-agent'); var needle = require('needle'); needle.get('https://github.com/status',{ agent: new ProxyAgent(), use_proxy_from_env_var: false }, function (error, response) { if...