Question
Apache cannot read uploaded files by ftp users (Centos 8)
Hi, if I upload files with “ftp1” user (the ftp user) apache cannot read/write these files.
For example if I upload the file “info.php” to website directory /var/www/website
and then I go to browser and type “http://server_ip/info.php! I get "Access denied.”.
I noticed that the files uploaded by ftp users have this permission: -rw------- 1 ftp1 ftp1 26 Mar 21 10:04 info.php
, when the apache files have -rw-rwxr--+ 1 apache apache 405 Feb 6 2020 index.php
.
About the FTP config, I set /var/www/website as ftp user home, and then I run these commands:
usermod -a -G ftp1 apache
setfacl -R -m u:ftp1:rwx /var/www/website
Thank you in advance.
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×