[KOR] 우분투에서 아파치 홈 디렉토리를 변경하는 방법을 알아보겠습니다. 먼저 /etc/apache2/sites-available 폴더에 접근하면 default 라는 파일이 있습니다. gedit로 파일을 열어줍니다. 다음 부분을 원하는 폴더 경로로 수정합니다.
[ENG] In this post, I will let you know how to change apache home directory. First, please access to this folder: [/etc/apache2/sites-available]. Then you can see file named [default]. Open it via gedit. And correct it as the folder path what you want to set. Like followings.
다음 [Follwings]:
correct
DocumentRoot /var/www/(directory-what-you-want)
[KOR] 그리고 다음의 커맨드로 아파치를 재실행하면 적용이 완료됩니다.
[ENG] And run command below to restart apache. It's done. Apache home directory has changed.
다음 [Follwings]:
#sudo service apache2 restart