디렉토리 리스팅 설정 방법에 대해서 문의드립니다

우분투 환경에서 디렉토리 리스팅을 막기 위해서는
/etc/apache2/mods-enabled/userdir.conf 안에서
Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec 줄에서 Indexes를 제거 시키는 방법으로 할 수 있다고 들었는데요. 또한 그렇게 잘 쓰고 있고요.

그런데 어떤 특정 폴더에 대해서 디렉토리 리스팅을 가능하게 하기 위한 방법은 찾지 못하겠더라고요.
어떤 특정 폴더, 혹은 사용자에게만 디렉토리 리스팅을 가능하게 하기 위한 방법에 대해서 문의드립니다.

[code:mft96but]<Directory "/home/umttumt/public_html/mp3">
Options Indexes
</Directory>[/code:mft96but]

식으로 하시면 됩니다.

http://httpd.apache.org/docs/2.2/mod/core.html#options

이곳을 참고하시면 좋을것 같네요.
저는 아래처럼 쓰고 있습니다.

[code:mft96but]
<Directory "/ndisk/DATA/Movie">
AllowOverride None
Options All Indexes
IndexOptions +XHTML +FancyIndexing +HTMLTable +VersionSort +SuppressColumnsorting +NameWidth=* +IconWidth=18 +IconHeight=18 +IgnoreCase +DescriptionWidth=* +SuppressHTMLPreamble
IndexOrderDefault Ascending Name
IndexIgnore HEADER* FOOTER* README* .htaccess *.bak
AddDescription "무손실 압축 비디오" *.ts
AddDescription "고화질 비디오" *.mkv
AddDescription "일반 비디오" *.avi
AddDescription "자막" *.smi
</Directory>[/code:mft96but]