-
Hi, I have a working mealie installation where I can login with local users. I've seen the Guide in #3338, but the configuration doesn't work (https://www.authelia.com/integration/openid-connect/mealie/) I would appreciate any help <3 Mealie Config: services:
mealie:
image: ghcr.io/mealie-recipes/mealie:v1.5.1
container_name: mealie
restart: always
expose:
- 9000
deploy:
resources:
limits:
memory: 500M
volumes:
- /opt/mealie/data:/app/data/
environment:
ALLOW_SIGNUP: false
PUID: 1000
PGID: 1000
TZ: Europe/Berlin
MAX_WORKERS: 1
WEB_CONCURRENCY: 1
BASE_URL: https://mealie.example.com
OIDC_AUTH_ENABLED: true
OIDC_SIGNUP_ENABLED: true
OIDC_CONFIGURATION_URL: https://sso.example.com/.well-known/openid-configuration
OIDC_CLIENT_ID: 'mealie'
OIDC_USER_GROUP: 'Mealie'
OIDC_ADMIN_GROUP: 'Mealie-Admin'
OIDC_AUTO_REDIRECT: false
OIDC_PROVIDER_NAME: 'Authelia (Single Sign-On)'
LOG_LEVEL: DEBUG Authelia Config: - client_id: 'mealie'
client_name: 'Mealie (https://mealie.example.com)'
public: true
authorization_policy: custom_ldap
pkce_challenge_method: S256
grant_types:
- authorization_code
scopes:
- openid
- profile
- groups
- email
redirect_uris:
- https://mealie.example.com/login
pre_configured_consent_duration: '1y'
require_pkce: true
userinfo_signed_response_alg: 'none'
token_endpoint_auth_method: 'none' Mealie Logs during Login:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
You may be running into a CORS error. Are there any logs in your browser console? If it is CORS, then you can configure your domain as an allowed origin in Authelia |
Beta Was this translation helpful? Give feedback.
Alright, it's fixed.
I had the following errors:
allowed_origins_from_client_redirect_uris: true
in Authelia configtraefik
network to the container in docker compose. My traefik network can't speak to the internet.Thank you @cmintey for helping me out here ^-^ ✨