This is a common question but I double checked suggested solutions without success.
These are the errors from PHP:
Warning: move_uploaded_file(images/img01.jpg): failed to open stream: Permission denied in /usr/share/nginx/html/media/test.php on line 28
Warning: move_uploaded_file(): Unable to move '/tmp/phpRvUCVx' to 'images/img01.jpg' in /usr/share/nginx/html/media/test.php on line 28
The server has installed nginx with php 7.3 (php-fpm)
Permissions on upload folder:
drwxrwxrwx. 2 nginx nginx 6 Apr 5 03:11 images
Information from ps aux | grep php
centos 24211 0.0 0.0 112708 980 pts/0 S+ 16:01 0:00 grep --color=auto php
root 24674 0.0 0.6 285532 11452 ? Ss Apr04 0:04 php-fpm: master process (/etc/opt/remi/php73/php-fpm.conf)
nginx 24675 0.0 0.4 287740 8724 ? S Apr04 0:00 php-fpm: pool www
nginx 24676 0.0 0.4 287740 8720 ? S Apr04 0:00 php-fpm: pool www
nginx 24677 0.0 0.4 287740 8684 ? S Apr04 0:00 php-fpm: pool www
nginx 24678 0.0 0.5 287916 9232 ? S Apr04 0:00 php-fpm: pool www
nginx 24679 0.0 0.5 287916 9308 ? S Apr04 0:00 php-fpm: pool www
nginx 25107 0.0 0.4 287740 8716 ? S Apr04 0:00 php-fpm: pool www
Information from ps aux | grep nginx
root 15041 0.0 0.1 125116 2324 ? Ss Apr04 0:00 nginx: master process /usr/sbin/nginx
nginx 15042 0.0 0.2 125956 5328 ? S Apr04 0:00 nginx: worker process
nginx 15043 0.0 0.2 125956 5328 ? S Apr04 0:00 nginx: worker process
nginx 24675 0.0 0.4 287740 8724 ? S Apr04 0:00 php-fpm: pool www
nginx 24676 0.0 0.4 287740 8720 ? S Apr04 0:00 php-fpm: pool www
nginx 24677 0.0 0.4 287740 8684 ? S Apr04 0:00 php-fpm: pool www
nginx 24678 0.0 0.5 287916 9272 ? S Apr04 0:00 php-fpm: pool www
nginx 24679 0.0 0.5 287916 9308 ? S Apr04 0:00 php-fpm: pool www
nginx 25107 0.0 0.4 287740 8716 ? S Apr04 0:00 php-fpm: pool www
centos 26097 0.0 0.0 112712 976 pts/0 S+ 16:39 0:00 grep --color=auto nginx
Configuration for PHP-FPM
user = nginx
group = nginx
listen = /var/run/php73-fpm/php73-fpm.sock
listen.owner = nginx
listen.group = nginx
What I missing ? Thanks in advanced