fauria / docker-vsftpd

🐳 vsftpd Docker image based on Centos 7. Supports passive mode and virtual users.
https://hub.docker.com/r/fauria/vsftpd/
Apache License 2.0
414 stars 341 forks source link

Logs location is incorrect #70

Open the-lazy-fox opened 2 years ago

the-lazy-fox commented 2 years ago

Hi, When loading the container it shows: · Log file: /var/log/vsftpd/vsftpd.log

but the correct path is /var/log/vsftpd.log

alainseys commented 2 years ago

Hi, @the-lazy-fox

I have tested this out and indeed the log location is incorrect i create ad PR where i have fixed this issue. The log from /var/log/vsftpd.log is directed to /logs/vsftpd.log

the-lazy-fox commented 2 years ago

Thank you!

plittlefield commented 1 year ago

I would like to monitor this file and maybe rotate it if it becomes too large.

OK, so how do I correctly reference this in my docker compose file?

I have:-

    volumes:
      - ./data/var/log/:/var/log/

Thanks,

Paully