Nginx 테마: Nginx 설치 후 자주 사용 되 는 기능 설정
목차
머리말
사용 중 효율 적 이 고 간결 하기 위해 Nginx 는 설치 후 자주 사용 하 는 설정 을 합 니 다.
1. 주 프로필 과 가상 호스트 분리
, , 、 ,
。
[root@nginx-01 conf]# egrep -v "#|^$" nginx.conf.bak
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name localhost;
location / {
root html;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
}
mkdir extra
[root@nginx-01 conf]# cat -n nginx.conf
[root@nginx-01 conf]# sed -n '10,20p' nginx.conf
server {
listen 80;
server_name localhost;
location / {
root html;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
[root@nginx-01 conf]# cat extra/www.conf
server {
listen 80;
server_name www.yygg.com;
location / {
root html/www;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
[root@nginx-01 conf]# cat extra/bbs.conf
server {
listen 80;
server_name bbs.yygg.com;
location / {
root html/bbs;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html/bbs;
}
}
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
include extra/www.conf;
include extra/bbs.conf;
}
[root@nginx-01 conf]# /app/nginx/sbin/nginx -t
nginx: the configuration file /app/nginx-1.18.0//conf/nginx.conf syntax is ok
nginx: configuration file /app/nginx-1.18.0//conf/nginx.conf test is successful
[root@nginx-01 conf]# mkdir /app/nginx/html/{www,bbs}
[root@nginx-01 conf]# echo "http://www.yygg.com" >>/app/nginx/html/www/index.html
[root@nginx-01 conf]# echo "http://bbs.yygg.com" >>/app/nginx/html/bbs/index.html
[root@nginx-01 conf]# echo "192.168.1.5 www.yygg.com bbs.yygg.com" >>/etc/hosts
[root@nginx-01 conf]# /app/nginx/sbin/nginx
[root@nginx-01 conf]# curl www.yygg.com
http://www.yygg.com
[root@nginx-01 conf]# curl bbs.yygg.com
http://bbs.yygg.com
2. 가상 호스트 별명 설정
www ,
www.yygg.com
에 별명 yygg.com
을 설정 합 니 다.[root@nginx-01 conf]# cat extra/www.conf
server {
listen 80;
server_name www.yygg.com yygg.com;
location / {
root html/www;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html/www;
}
}
[root@nginx-01 conf]# /app/nginx/sbin/nginx -s reload
[root@nginx-01 conf]# cat /etc/hosts
192.168.1.5 www.yygg.com bbs.yygg.com yygg.com
[root@nginx-01 conf]# curl yygg.com
http://www.yygg.com
3. Nginx status 상태 정보 설정
`ngx_http_stub_status_module`
/app/nginx/sbin/nginx -V
컴 파일 에 상기 모듈 이 있 는 지 확인 합 니 다. nginx version: nginx/1.18.0
built by gcc 4.8.5 20150623 (Red Hat 4.8.5-16) (GCC)
built with OpenSSL 1.0.2k-fips 26 Jan 2017
TLS SNI support enabled
configure arguments: --user=nginx --group=nginx --prefix=/app/nginx-1.18.0/ --with-http_stub_status_module --with-http_ssl_module
status.conf
설정 파일 은 다음 과 같 습 니 다. server {
listen 80;
server_name status.yygg.com;
location / {
stub_status on;
access_log off;
}
}
nginx.conf
status 가상 호스트 설정 추가 sed -i '11 i include extra/status.conf;' nginx.conf
/app/nginx/sbin/nginx -t
/app/nginx/sbin/nginx -s reload
192.168.1.5 status.yygg.com
status.yygg.com
보기 [root@nginx-01 conf]# curl status.yygg.com
Active connections: 1
server accepts handled requests
4 4 4
Reading: 0 Writing: 1 Waiting: 0
Active connections: 1 ## 1
server ## 4
accepts ## 4
handled requests ## 4
Reading ## Header
Writing ## Header
Waiting ##NGinx
4. 오류 로그 추가
error_log file level;
,file ,level
warn|error|crit
nging.conf
파일 에 worker_processes 1;
추가 error_log logs/error_log;
, !
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
【CoreOS】이중화 구성 Keepalived+NginxLB+NginxWEB(1)(1) IP 주소 192.168.0.50의 VIP (virtual ip)를 가진 서버에 액세스 (2)Docker-Nginx 80번 포트에 착신 (3) 80번 포트 착신 후 Docker-Nignx-Proxy가 Dock...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.