Apacheのルートにpictureディレクトリを一時的に公開したかったのですが403エラーが出た時の対処法を初心に帰ってめも。
403 Forbidden You don't have permission to access this resource.
ディレクトリの所有権をapacheに変更しただけではダメでSELinux保護が効いているときはコンテキストの変更が必要でした。
# chown -R apache:apache ./picture
SELinuxコンテキストを確認、変更します。
# ls -lZ /var/www/html/picture
# semanage fcontext -a -t httpd_sys_rw_content_t "/var/www/html/picture(/.*)?" # restorecon -R /var/www/html/picture
何度調べても忘れてしまうんですよね(- -;