localhost에 연결할 수 없으며 오류가 표시되었습니다.
Forbidden
You don't have permission to access / on this server.
Apache/2.2.22 (Ubuntu) Server at localhost Port 80
나는 apache2를 제거했습니다 :
sudo apt-get remove apache2*
그리고 다시 설치했는데도 여전히 같은 오류가 뜹니다.
저는 우분투를 처음 접했기 때문에 아는 것이 별로 없습니다. 누군가 저를 도와주세요.
답변1
웹 폴더의 권한을 변경해야 합니다
chmod 775 /var/www
또한 웹 사용자에 대한 파일 소유권을 설정해야 합니다.
답변2
액세스할 수 있도록 파일 시스템을 구성해야 합니다.
아파치 구성/가상 호스트에서:
# Forbid default access to filesystem locations
<Directory />
Order Deny,Allow
Deny from all
</Directory>
# Allow access to filesystem location
<Directory /path-to/whatever/dir/>
Order Allow,Deny
Allow from all
</Directory>