diff --git a/docker-compose.encryptid.yml b/docker-compose.encryptid.yml index e66ccd6..022123f 100644 --- a/docker-compose.encryptid.yml +++ b/docker-compose.encryptid.yml @@ -25,7 +25,7 @@ services: labels: # Traefik auto-discovery - "traefik.enable=true" - - "traefik.http.routers.encryptid.rule=Host(`auth.rspace.online`) || Host(`encryptid.jeffemmett.com`)" + - "traefik.http.routers.encryptid.rule=Host(`auth.rspace.online`) || Host(`auth.ridentity.online`) || Host(`encryptid.jeffemmett.com`)" - "traefik.http.routers.encryptid.entrypoints=web" - "traefik.http.routers.encryptid.priority=150" - "traefik.http.services.encryptid.loadbalancer.server.port=3000" @@ -34,6 +34,11 @@ services: - "traefik.http.routers.encryptid-wellknown.entrypoints=web" - "traefik.http.routers.encryptid-wellknown.priority=200" - "traefik.http.routers.encryptid-wellknown.service=encryptid" + # Serve .well-known/webauthn from ridentity.online too + - "traefik.http.routers.encryptid-wellknown-rid.rule=Host(`ridentity.online`) && PathPrefix(`/.well-known/webauthn`)" + - "traefik.http.routers.encryptid-wellknown-rid.entrypoints=web" + - "traefik.http.routers.encryptid-wellknown-rid.priority=200" + - "traefik.http.routers.encryptid-wellknown-rid.service=encryptid" networks: - traefik-public - encryptid-internal diff --git a/src/encryptid/server.ts b/src/encryptid/server.ts index b1bdb45..5b5178d 100644 --- a/src/encryptid/server.ts +++ b/src/encryptid/server.ts @@ -105,6 +105,9 @@ const CONFIG = { 'https://rstack.online', 'https://rpubs.online', 'https://rauctions.online', + 'https://ridentity.online', + 'https://auth.ridentity.online', + 'https://rphotos.online', // Development 'http://localhost:3000', 'http://localhost:5173',