CentOS 7
Sponsored Link

Nginx : UserDirを利用する2015/08/18

 
一般ユーザーが自身のホームディレクトリ内に置いたファイルを Web サイトとして公開できるよう設定します。
[1] Nginx の設定です。
[root@www ~]#
vi /etc/nginx/nginx.conf
# server セクション内に追記

        location ~ ^/~(.+?)(/.*)?$ {
            alias /home/$1/public_html$2;
            index  index.html index.htm;
            autoindex on;
        }

[root@www ~]#
systemctl restart nginx

[2] 任意の一般ユーザーで自身のホームディレクトリにテストページを作成し、動作確認をします。 作成したテストページに Web アクセスして、ページが表示されれば OK です。
[cent@www ~]$
chmod 711 /home/cent

[cent@www ~]$
mkdir ~/public_html

[cent@www ~]$
chmod 755 ~/public_html

[cent@www ~]$
vi ~/public_html/index.html
<html>
<body>
<div style="width: 100%; font-size: 40px; font-weight: bold; text-align: center;">
Nginx UserDir Test Page
</div>
</body>
</html>
関連コンテンツ