Signing back into the Community for the first time? You'll need to reset your password to access your account. Find out more.
Forum Discussion
XIII
3 years agoSuper Contributor
How to set up TLS for 1Password Connect?
The documentation on setting up TLS for 1Password Connect is too brief for me...
Where do I need to set OP_HTTPS_PORT ? (On the Pi running Connect? On each client running the CLI? On all of the...
Former Member
3 years agoSorry for the delayed reply. Contrary to most folks at 1Password, I live in Europe. So I sign off a bit earlier than you might be used to from my colleagues.
I do see you made some great progress! Looking at Connect's logs, it seems to be listening to HTTPS traffic only.
Could you check if port 18843
is also specified in the docker-compose.yml
? Now that Connect is listening on port 18843, we have to make sure that Docker is also forwarding that port. You can do that by changing the ports
section of the connect-api
container:
services:
connect-api:
# left out some stuff here
ports:
- "18843:18843"
# left out more stuff here
Let me know if that helps.
Joris