apache 포트 변경 및 웹 루트 변경하기


(1) CentOS


CentOS의 경우 apache 포트 번호 변경은 

/etc/httpd/conf/httpd.conf 파일을 열어서


Listen 80


과 같이 되어 있는 번호를 원하는 포트 번호로 변경하면 된다.

변경 후 apache를 재구동해 준다.


# service httpd restart


웹 루트 디렉토리 변경

/etc/httpd/conf/httpd.conf 파일을 열어서


DocumentRoot "/var/www/html"


과 같이 되어 있는 부분을 원하는 경로로 변경해 주면 된다. 다음과 같이..


DocumentRoot "/var/www/myhome"


변경 후 apache를 재구동해 준다.


# service httpd restart



(2) Ubuntu


우분투의 경우 apache 포트 번호 변경은


/etc/apache2/ports.conf 파일에서 


Listen 80


으로 되어 있는 부분을 원하는 포트 번호로 변경하면 된다.

변경 후 apache를 재구동해 준다.


# service apache2 restart


웹 루트 디렉토리 변경은

/etc/apache2/sites-available/000-default.conf 파일을 열면


DocumentRoot /var/www/html


과 같이 되어 있을 것이다. 디폴트 웹 루트 디렉토리이다. 이 디렉토리에 index.html과 같은 웹 페이지를 작성해 두면 http://xxx.xxx.xxx.x/index.html로 접근하는 경로이다.

그런데 /var/www/html을 /var/www/myhome으로 변경하고자 한다면

DocumentRoot /var/www/myhome으로 변경한 후 apache를 재 구동해 주면 된다.


# serivce apache2 restart



+ Recent posts