[Q] 아파치 서버
글쓴이: naisr00t / 작성시간: 월, 2003/03/03 - 3:09오후
아파치를 사용 중입니다.
그런데, 저는 저의 계정에 웹으로 접근하였을 때,
제 계정의 디렉토리를 볼 수 있도록 하고 싶습니다.
어디서 설정을 해야 하는지 알고 싶습니다.
가령, http://localhost/~fire/ 라고 하면
그 내부의 디렉토리를 보고 싶습니다.
아파치 그룹의 ftp의 디렉토리를 웹에서 보듯이 말이죠.
Forums:
## UserDir: The name of the directory
#
# UserDir: The name of the directory which is appended onto a user's home
# directory if a ~user request is received.
#
<IfModule mod_userdir.c>
UserDir public_html
</IfModule>
#
# Control access to UserDir directories. The following is an example
# for a site where these directories are restricted to read-only.
#
<Directory /home/*/public_html>
AllowOverride FileInfo AuthConfig Limit
Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
<Limit GET POST OPTIONS PROPFIND>
Order allow,deny
Allow from all
</Limit>
<Limit PUT DELETE PATCH PROPPATCH MKCOL COPY MOVE LOCK UNLOCK>
Order deny,allow
Deny from all
</Limit>
</Directory>
하구
LoadModule userdir_module /usr/lib/apache/1.3/mod_userdir.so
이게 필요할것입니다.
서명:
이것은 올리는 글에 첨부될 사인 문구입니다. 제한은 255 글자입니다
첨언하자면....http.conf의 내용을 건드릴 수 없는 권한일
첨언하자면....
http.conf의 내용을 건드릴 수 없는 권한일 경우에
해당 directory에
.htaccess 라는 파일을 하나 만드시고
Options Indexes
라고 한 줄넣으셔도 됩니다.
---
http://coolengineer.com
댓글 달기