본문 바로가기
시스템운영

Apache Websever 설치 (Ubuntu 16.x,18.x, apache2)

by 보이드메인 2020. 10. 17.

apache 설치

$>sudo apt install apache2

 

apache 설치버전 확인

$> apache2 -v
Server version: Apache/2.4.29 (Ubuntu)
Server built:   2020-08-12T21:33:25

 

$> sudo apache2 -v
Server version: Apache/2.4.29 (Ubuntu)
Server built:   2020-08-12T21:33:25

 

웹서버 접속확인 

웹브라우저에서 IP를 입력하여 접속해본다.

 

 

HTTP html 컨텐츠가 위치한 디렉토리는 아래와 같다.

/var/www/html

/var/www/html/index.html (접속시 로딩되는 페이지)

 

"HTTPS" 수용을 위해, SSL인증 무료발급패키지를 설치한다.

 

sudo apt install ssl-cert 

sudo apt install certbot

 

sudo a2enmod rewrite

sudo a2enmod headers

sudo a2enmod ssl

sudo a2dismod -f autoindex

 

Apache 설정 파일 

/etc/apache2/apache2.conf

/etc/apache2/envvars

/etc/apache2/ports.conf

 

HTTP Listen 포트(80) 를 변경하려면

ports.conf 파일을 편집한다.

ports.conf

변경사항 적용을 위해 apache 를 재기동한다.

sudo systemctl restart apache2

또는,

sudo service apache2 restert

 

apache 설정 확인

apache2ctl -S

 

apache 문자셋 설정 

sudo vi /etc/apache2/conf-available/charset.conf

 

아래항목의 "#" 주석을 제거한다.

AddDefaultCharset UTF-8

 

 

'시스템운영' 카테고리의 다른 글

root 패스워드 변경(ubuntu)  (0) 2020.10.18
호스트이름(hostname) 변경하기 (ubuntu)  (0) 2020.10.18
Memory Usage  (0) 2020.06.02
네트워크 상태조회  (0) 2020.06.02
ulimit 커널파라미터 정보  (0) 2020.06.02

댓글