If httpd scripts should be allowed to write to public directories you need to turn on the $BOOLEAN boolean and change the file context of the public directory to public_content_rw_t.Read the httpd_selinux man page for further information: "setsebool -P $BOOLEAN=1; chcon -t public_content_rw_t <path>" You must also change the default file context labeling files on the system in order to preserve public directory labeling even on a full relabel."semanage fcontext -a -t public_content_rw_t <path>"
If httpd scripts should be allowed to write to public directories you need to turn on the $BOOLEAN boolean and change the file context of the public directory to public_content_rw_t. Read the httpd_selinux
man page for further information:
"setsebool -P $BOOLEAN=1; chcon -t public_content_rw_t <path>"
You must also change the default file context labeling files on the system in order to preserve public directory labeling even on a full relabel. "semanage fcontext -a -t public_content_rw_t <path>"
httpd スクリプトによるパブリックディレクトリーへの書き込みを許可する場合、 $BOOLEAN boolean をオンにして、パブリックディレクトリーのファイルコンテキストを public_content_rw_t に変更する必要があります。 詳細については httpd_selinux の man ページをご覧ください:
"setsebool -P $BOOLEAN=1; chcon -t public_content_rw_t<path>"
また、 完全な再ラベル付けを行なった後もパブリックディレクトリーのラベルを維持させたい場合は、 システムのデフォルトのファイルコンテキストラベル設定ファイルも変更する必要があります。 "semanage fcontext -a -t public_content_rw_t <path>"