Hi!
I’m Sebastian. New to vaultwarden. I’m trying to connect my self-hosted vaultwarden (docker-debian behind reverse proxy with valid cert) to my Windows Server AD. I was following some offical Bitwarden documentations to how to do this when encountered a problem. I need to generate/get an organization API key to use the Bitwarden Directory Connector but the whole API section in my organization is missing.
I’ve checked the network in Chrome browser for missing files or greater codes than 200 but there was nothing.
I don’t really know where to go next or what cause this problem.
docker-compose.yml
version: ‘3.4’
services:
vaultwarden:
image: vaultwarden/server:latest
environment:
- ADMIN_TOKEN=${ADMIN_TOKEN}
- SIGNUPS_ALLOWED=${SIGNUPS_ALLOWED}
volumes:
- ./vw_data:/data
ports:
- 17881:80
.env
ADMIN_TOKEN=myadmintokenisheresecretley
SIGNUPS_ALLOWED=false
Can you guys help me with this please?