You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've gotten this working using TLS option with a internal cert. However when I connect using winscp FTP TLS/SSL Explicit encryption (PASV enabled) , I can upload files, after the file is uploaded the directory listing does not refresh. If I reconnect, I can see the uploaded file, can't delete files or create a new directory. Any help would be appreciated, thank you!
I do not see much info in the log
Dec 19 12:38:53 373a3684c1f2 pure-ftpd: ([email protected]) [DEBUG] Command [mfmt] [20221219102300 test-file.txt]
Dec 19 12:38:53 373a3684c1f2 pure-ftpd: ([email protected]) [DEBUG] Command [type] [A]
Dec 19 12:38:53 373a3684c1f2 pure-ftpd: ([email protected]) [DEBUG] Command [pasv] []
Dec 19 12:38:53 373a3684c1f2 pure-ftpd: ([email protected]) [DEBUG] Command [mlsd] []
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I've gotten this working using TLS option with a internal cert. However when I connect using winscp FTP TLS/SSL Explicit encryption (PASV enabled) , I can upload files, after the file is uploaded the directory listing does not refresh. If I reconnect, I can see the uploaded file, can't delete files or create a new directory. Any help would be appreciated, thank you!
I do not see much info in the log
Dec 19 12:38:53 373a3684c1f2 pure-ftpd: ([email protected]) [DEBUG] Command [mfmt] [20221219102300 test-file.txt]
Dec 19 12:38:53 373a3684c1f2 pure-ftpd: ([email protected]) [DEBUG] Command [type] [A]
Dec 19 12:38:53 373a3684c1f2 pure-ftpd: ([email protected]) [DEBUG] Command [pasv] []
Dec 19 12:38:53 373a3684c1f2 pure-ftpd: ([email protected]) [DEBUG] Command [mlsd] []
Docker Compose file:
version: '3'
services:
ftpd_server:
image: stilliard/pure-ftpd
container_name: pure-ftpd
ports:
- "21:21"
- "30000-30009:30000-30009"
volumes:
- pure-ftpd-data:/home/
- purge-ftpd-etc:/etc/pure-ftpd/
- pure-ftpd-ssl:/etc/ssl/private/
environment:
PUBLICHOST: "internal-ip-of-docker-host"
FTP_PASSIVE_PORTS: 30000:30009
FTP_MAX_CONNECTIONS: 50
ADDED_FLAGS: "--tls=2 -d"
restart: always
volumes:
pure-ftpd-data:
purge-ftpd-etc:
pure-ftpd-ssl:
Beta Was this translation helpful? Give feedback.
All reactions