DescriptionI could successfully setup and use Authelia with Homepage v2.0.0. After pulling v2.1.0, I cannot log in since the "Login required" screen does not display the "Sign in" button anymore. On browsers where I'm already logged in, I still can access, but otherwise, there is no way to log in. I pulled again v2.0.0 and it worked again.
homepage versionv2.1.0 Installation methodDocker Configuration## Homepage config
[docker-compose.yml]
services:
homepage:
image: ghcr.io/gethomepage/homepage:v2.1.0
container_name: homepage
expose:
- "3000"
networks:
- proxy_homepage
volumes:
- /opt/docker/homepage/config:/app/config
- /opt/docker/homepage/icons:/app/public/icons
- /var/run/docker.sock:/var/run/docker.sock:ro
env_file:
- .env
restart: unless-stopped
extra_hosts:
- "authelia.mydomain.com:192.168.x.y"
networks:
proxy_homepage:
external: true
[.env]
LOG_LEVEL=debug
TZ=Etc/Greenwich
HOMEPAGE_ALLOWED_HOSTS=homepage.mydomain.com
HOMEPAGE_AUTH_ENABLED=true
HOMEPAGE_AUTH_SECRET=***********************
HOMEPAGE_EXTERNAL_URL=https://homepage.mydomain.com
HOMEPAGE_OIDC_ISSUER=https://authelia.mydomain.com
HOMEPAGE_OIDC_CLIENT_ID=homepage
HOMEPAGE_OIDC_CLIENT_SECRET=*****************************
HOMEPAGE_OIDC_NAME=Authelia
HOMEPAGE_OIDC_SCOPE=openid email profile groups
## Authelia config
identity_providers:
oidc:
hmac_secret: {{ secret "/run/secrets/authelia_oidc_hmac" }}
jwks:
- key_id: authelia
algorithm: RS256
use: sig
key: |
{{ secret "/run/secrets/authelia_oidc_key" | nindent 10 }}
enable_client_debug_messages: false
- client_id: 'homepage'
client_name: 'Homepage'
client_secret: {{ secret "/run/secrets/homepage_local_client_secret" }}
public: false
authorization_policy: 'two_factor'
require_pkce: false
pkce_challenge_method: ''
redirect_uris:
- 'https://homepage.mydomain.com/api/auth/callback/homepage-oidc'
scopes:
- 'openid'
- 'profile'
- 'groups'
- 'email'
response_types:
- 'code'
grant_types:
- 'authorization_code'
access_token_signed_response_alg: 'none'
userinfo_signed_response_alg: 'none'
token_endpoint_auth_method: 'client_secret_basic'Container LogsHomepage logs (during trying to open homepage)docker compose logs -fhomepage | Skipping ownership changes for /app/config Authelia logsnothing relevant to homepage Browser LogsGET Troubleshootingnot relevant |
Replies: 2 comments 2 replies
|
Do you have any custom.css? In 2.1 your css now loads on the signin page, before it didn’t. Otherwise the changes to auth are super minimal, and I can’t produce any issue like this |
|
This discussion has been automatically closed because it was marked as answered. See our contributing guidelines for more details. |


Do you have any custom.css? In 2.1 your css now loads on the signin page, before it didn’t. Otherwise the changes to auth are super minimal, and I can’t produce any issue like this