Linux 설정 Nginx 서버

2109 단어 Linuxnginxlinuxcentos
Nginx 프로필 설정
Apache 와 유사 하 게 Nginx 는 IP 주 소 를 기반 으로 하 는 가상 호스트 와 도 메 인 이름 을 기반 으로 하 는 가상 호스트 설정 등 다양한 가상 컴퓨터 설정 방식 을 지원 합 니 다. 이 블 로 그 는 도 메 인 이름 을 기반 으로 하 는 가상 호스트 설정 을 예 로 들 수 있 습 니 다.Nginx 서버 설치:https://blog.csdn.net/qq_46323758/article/details/116351553
Nginx 서버 설정
1. IP 주소 설정
1. IP 주소 설정
ifconfig ens33 192.168.100.100

2. 새 디 렉 터 리 및 프로필
1. 새 디 렉 터 리: / usr / local / nginx / conf 디 렉 터 리 에 새 디 렉 터 리 vhost
cd /usr/local/nginx/conf
mkdir vhost

2. vhost 디 렉 터 리 에 새 가상 호스트 설정
cd vhost
vim exam.conf

3. 프로필 내용 설정
server{
		listen 192.168.100.100:80;
		server_name http://exam.excesoft.com;
		access_log /data/logs/http://exam.excesoft.com.log main;
		error_log /data/logs/http://exam.excesoft.com.errror.log;
		location /{
		root /var/www/html/exam;
		index index.html index.htm;
	}
}

4. 가상 호스트 설정 파일 을 주 파일 에 포함
vim nginx.conf

ngix. conf 파일 끝의 마지막 괄호 내부 에 다음 문 구 를 추가 합 니 다: include vhost / *. conf
	include vhost/*.conf;
}

3. 로그 파일 만 들 기
1. 디 렉 터 리 만 들 기
mkdir /data/logs

2. 로그 파일 만 들 기
touch  /data/logs/http://exam.excesoft.com.log

3. 오류 로그 만 들 기
touch  /data/logs/http://exam.excesoft.com.error.log

4. Nginx 서버 테스트 진행
1. 서버 설정 검사
cd /usr/local/nginx/sbin/
./nginx -t

2. nginx 서버 시작
./nginx

3. 도 메 인 이름과 IP 주소 의 대응 관 계 를 추가 합 니 다.
vim /etc/hosts

마지막 줄 에 내용 추가
192.168.100.100 http://exam.excesoft.com

5. 디 렉 터 리 및 테스트 파일 생 성
1. 디 렉 터 리 만 들 기
mkdir -p /var/www/html/exam

2. 테스트 파일 생 성
vim /data/exam.excesoft.com/index.html

3. index. html 에 입력
hello,this is index.html in /data/exam.excesoft.com/

4. 브 라 우 저 시작, 입력http://192.168.100.100Nginx 서버 의 홈 페이지 에 첫 페이지 내용 을 표시 하 는 것 을 볼 수 있 습 니 다.

좋은 웹페이지 즐겨찾기