본문 바로가기

Study records/Linux server hacking

기초 - apache 웹서버

먼저 아파치를 업데이트하고 설치

 

sudo apt-get update

sudo apt-get install apache2

 

sudo apt-get install elinks

elinks https://www.google.com

 

 

elinks http://0.0.0.0/   <- 자기주소

elinks 127.0.0.1  

연결 성공

 

 

 

sudo nano index.html

 

웹 서버의 기본 문서 루트 디렉토리는 /var/www/html이다. 생성한 index.html 파일이 이 디렉토리에 있어야 한다.

sudo mv index.html /var/www/html/index.html

 

 

elinks https://192.168.64.3/index.html

 

 

 

로그 파일 실시간으로 모니터링