apache의 경우 user 계정이 a.co.kr 도메인이 디폴트인 서버에 있으면
a.co.kr/~user 로 접속이 가능합니다.
nginx에서 디폴트 도메인이 a.co.kr 일 때,
사용자 계정 user로 접속하려면 어떻게 설정을 해야 하나요?
- to be continue -
apache의 경우 user 계정이 a.co.kr 도메인이 디폴트인 서버에 있으면
a.co.kr/~user 로 접속이 가능합니다.
nginx에서 디폴트 도메인이 a.co.kr 일 때,
사용자 계정 user로 접속하려면 어떻게 설정을 해야 하나요?
http://www.server-world.info/en/note?os=CentOS_6&p=nginx&f=3
Áñ°Å¿î ÇÏ·ç µÇ½Ã±æ ¹Ù¶ø´Ï´Ù.
http://serverfault.com/questions/312494/hosting-folder-in-the-home-directory-using-nginx
¾Æ·¡Ã³·³ ³ÖÀ¸´Ï, ~user·Î Á¢¼ÓÀÌ µÇ³×¿ä.
±×·±µ¥, ±×·¸°Ô µé¾î°£ °÷¿¡¼ php´Â ¾ÈµË´Ï´Ù. -..-
# add follows in "server" section
location ~ ^/~(.+?)(/.*)?$ {
alias /home/$1/public_html$2;
}
php script°¡ ¾È¸Ô´Â ÀÌÀ¯¸¦ ã¾Æ¾ß Çϰڳ׿ä. -..-
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
http://serverfault.com/questions/312494/hosting-folder-in-the-home-directory-using-nginx
¼º°øÇϽñæ~
°³¹ß¿ë µµ¸ÞÀÎÀ» Çϳª ±¸ÀÔÇسõ°í, user ¸¶´Ù ¼ºê µµ¸ÞÀÎÀ» Çϳª¾¿ ÇÒ´çÇعö¸®´Ï ½º¸¶Æ®Æù¿¡¼ Å×½ºÆ®µµ ½±°í ÆíÇÏ´õ±º¿ä.
¹°·Ð PC ³»ºÎ¿¡¼¸¸ »ç¿ëÇÏ´Â °æ¿ì´Â PCÀÇ hosts ¸¦ ¼öÁ¤Çؼ ¾²°í¿ä.