Apache 설정 질문이에요

http://118.42.60.210/

우분투에서 패키지로 설치했다면 [b:3kiza34b]위 httpd.conf 의 내용을 전부 지우면 보일거 같은데요! :shock: [/b:3kiza34b]

우분투는
어떤 파일이 먼저 뜰지를 지정한 설정 파일은 /etc/apache2/mods-enabled/dir.conf 에 정의 되어 있으며

[code:3kiza34b]<IfModule mod_dir.c>

      DirectoryIndex index&#46;html index&#46;cgi index&#46;pl index&#46;php index&#46;xhtml index&#46;htm

</IfModule>
[/code:3kiza34b]

아파치 기본 루트 설정은 /etc/apache2/sites-available/default 에서 정의 하고 있습니다.

[code:3kiza34b]<VirtualHost *:80>
ServerAdmin webmaster@localhost

DocumentRoot /var/www
&lt;Directory /&gt;
	Options FollowSymLinks
	AllowOverride None
&lt;/Directory&gt;
&lt;Directory /var/www/&gt;
	Options Indexes FollowSymLinks MultiViews
	AllowOverride None
	Order allow,deny
	allow from all
&lt;/Directory&gt;

파일내용 중간생략...[/code:3kiza34b]

cd /usr/local && wget http://mirror.cc.columbia.edu/pub/softw … .17.tar.gz
tar -xzvf httpd-2.2.17.tar.gz && cd httpd-2.2.17
./configure --enable-so && make && make install

위와 같이 컴파일 설치 했습니다.;;

아 그냥 apt-get install php5-gd mysql-server mysql-client로 쉽게 할걸;

[quote="folderfile":3ty94ipl]cd /usr/local && wget http://mirror.cc.columbia.edu/pub/softw … .17.tar.gz
tar -xzvf httpd-2.2.17.tar.gz && cd httpd-2.2.17
./configure --enable-so && make && make install

위와 같이 컴파일 설치 했습니다.;;

아 그냥 apt-get install php5-gd mysql-server mysql-client로 쉽게 할걸;[/quote:3ty94ipl]

컴파일 설치 하였다면 소스 디렉토리의 docs/conf/httpd.conf.in 을 활용하여 보십시오
그 파일을 살펴 보면

[code:3ty94ipl]<IfModule dir_module>
DirectoryIndex index.html
</IfModule>[/code:3ty94ipl] 를

[code:3ty94ipl]<IfModule dir_module>
DirectoryIndex index.html index.php
</IfModule>[/code:3ty94ipl] 로 해주면 index.html 이 없을 경우 index.php 가 뜹니다.

전에도 이야기 했듯이
우분투에서 컴파일하여 설치 할때도 패키지로 만들면 편합니다.

http://www.ubuntu.or.kr/viewtopic.php?p=72207

감사합니다. 초보에게 신과 같은 존재시네요 ^^;;;;