웹 서버 디폴트 페이지 설정
웹 서버에 처음 접속하면
이런 디폴트 페이지가 나온다.
디폴트 페이지는 저기 굵은 글씨의 replace this file옆에 /var/www/html에
원하는 파일을 넣으면 간단히 바뀐다.
이 디렉토리를 원하는 곳으로 바꾸고 방법을 알아보자.
※ubuntu 20.04버전 기준
/etc/apache2/sites-available/000-default.conf를 열어보자.
처음 열 때는 접근 권한이 없을텐데 chmod 744로 권한을 주면 된다.
1./etc/apache2/sites-availables/000-default.conf에서 DocumentRoot 수정
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/test
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
2. /etc/apache2/apache2.conf에서 수정
위 사진 처럼 <Directory 디렉토리> 부분에 원하는 디렉토리를 입력한다.
3.service apache2 reload 해주면 된다.