-
Notifications
You must be signed in to change notification settings - Fork 5
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
Signet's SAMLtest.ID testing service is dead #10
Comments
hey is there any plan to fix this? I'm facing connection error to samltest.id host when launching latest docker image. Is there any workaround to fix this? |
I stumbled upon this exact issue in July 2024 and it still seems to be problematic. In case someone else needs a workaround, this is what worked for me:
The first launch fails but the configuration files are now available in the Docker volume. In the volume folder, the files: Other testing sites that do not crash the initial boot of SATOSA are for example Mock SAML for IdP or RSA for SP. I have personally managed to configure a working example based on this guide. |
FWIW, here's how I'm using the official image from docker compose, avoiding the provided entrypoint script (and thereby this issue) completely: services:
satosa:
image: satosa # or satosa:alpine
volumes:
- ./satosa:/etc/satosa:ro
environment:
PYTHONDONTWRITEBYTECODE: 1
SATOSA_CONFIG: /etc/satosa/proxy_conf.yaml
# etc.
entrypoint:
- gunicorn
command:
- --bind=0.0.0.0:${GUNICORN_PORT:-8080}
- --workers=${GUNICORN_WORKERS:-3}
- --worker-tmp-dir=/dev/shm
- satosa.wsgi:app The local directory |
Default configuration is an SP-to-IdP proxy using Signet's SAMLtest.ID testing service.
Alas https://samltest.id/ is no more:
The text was updated successfully, but these errors were encountered: