bgnori / isokaze

isokazeの管理情報。中身は空だよ〜
1 stars 0 forks source link

userdir #6

Closed ujihisa closed 11 years ago

ujihisa commented 11 years ago
ujihisa@isokaze ~/public_html % pwd
/home/ujihisa/public_html
ujihisa@isokaze ~/public_html % cat a.html
hello

これが

http://tonic-water.com/~ujihisa/a.html

でアクセスできると便利!

raa0121 commented 11 years ago

+1

bgnori commented 11 years ago

userdirとユーザー毎のport、それぞれ必要という理解でOK?

ujihisa commented 11 years ago

ですね、userdirはcgiとstatic file専用。

(ちなみにuserdir with cgi/static fileあえてなしでport専有独立サーバ使用に限る、というのもアリだと思います)

bgnori commented 11 years ago

とりあえず、 /etc/nginx/sites-enabled/tonic-water.com

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

とした. autoIndex onがいい?

bgnori commented 11 years ago

tx 2 mattn-san!!