ユーザーのホームディレクトリ領域を使えるようにする2014/01/01 |
一般ユーザーが自身のホームディレクトリ内に置いたファイルをWebサイトとして公開できるようにします。
|
|
[1] | httpd の設定 |
[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> systemctl restart httpd.service |
[2] | 一般ユーザーでテストページを作成して動作確認をします。作成したテストページにWebブラウザでアクセスしてページが表示されればOKです。 |
[fedora@www ~]$ mkdir public_html [fedora@www ~]$ chmod 711 /home/fedora [fedora@www ~]$ chmod 755 /home/fedora/public_html
[fedora@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 |