Apache httpd : ユーザーのホーム領域を有効にする2019/10/18 |
一般ユーザーが自身のホームディレクトリ内に置いたファイルを Web サイトとして公開できるように設定します。
|
|
[1] | UserDir を有効化して設定します。 |
[root@www ~]#
vi /etc/httpd/conf.d/userdir.conf # 17行目:コメント化 # UserDir disabled
# 24行目:コメント解除 UserDir public_html # 31行目 - 35行目 <Directory "/home/*/public_html"> AllowOverride All # 必要に応じて変更 Options None # 必要に応じて変更 Require method GET POST OPTIONS </Directory>[root@www ~]# systemctl restart httpd |
[2] | SELinux を有効にしている場合は、ユーザーのホーム領域を使用するにはポリシーの許可設定が必要です。 |
[root@www ~]# setsebool -P httpd_enable_homedirs on [root@www ~]# restorecon -R /home
|
[3] | 任意の一般ユーザーでテストページを作成して動作確認をします。クライアント PC で Web ブラウザを起動し、作成したテストページにアクセスできれば OK です。 |
[cent@www ~]$ mkdir public_html [cent@www ~]$ chmod 711 /home/cent [cent@www ~]$ chmod 755 /home/cent/public_html
[cent@www ~]$
vi ./public_html/index.html <html> <body> <div style="width: 100%; font-size: 40px; font-weight: bold; text-align: center;"> UserDir Test Page </div> </body> </html> |
Sponsored Link |