SFTP Docs need to be adjusted. #1772
JustDr00py
started this conversation in
Feature Requests
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
https://easyengine.io/handbook/configure-sftp-on-ee4-server/
In this documentation about enabling SFTP for EE4 is almost correct, one line in the docker-compose.yml file needed to be adjusted for some odd reason.
"""
sftp:
image: atmoz/sftp
restart: on-failure
volumes:
- /opt/easyengine/sites/example.com/app/htdocs/:/home//upload
- ./ssh_host_ed25519_key:/etc/ssh/ssh_host_ed25519_key
- ./ssh_host_rsa_key:/etc/ssh/ssh_host_rsa_key
- ./users.conf:/etc/sftp/users.conf:ro
ports:
- "2222:22"
"""
- ./users.conf:/etc/sftp/users.conf:ro
needs to change to
- ~/.sftp-config/users.conf:/etc/sftp/users.conf:ro
Beta Was this translation helpful? Give feedback.
All reactions