1: nginx.conf 파일의 내용은 다음과 같습니다.
worker_processes 4; //4코어 CPU를 참조합니다.
events {
Worker_connections 65535 // Linux Match에서 매개변수를 보려면 Ulimit -n
}
http {
include mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$ time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
파일 보내기;//파일 가속 전송
client_max_body_size 6m;//최대 업로드 파일 크기
gzip on;//텍스트 파일 압축 및 전송
include /opt/ nginx/conf/vhost/ *;//구성된 여러 웹사이트를 포함합니다. 예는 다음과 같습니다: b2b.conf 및 auto.conf
}
2: b2b.conf 파일의 내용은 다음과 같습니다:
서버 {
수신 80; server_name www.b2bxxx.cn b2bxxx.cn ;
위치 / {//홈페이지
index index.html index.htm;
}
위치 ^~ /static/ {//정적 파일
}
위치 ~ *$ {
}
위치 ~ .*.(gif|jpg|jpeg|png|bmp|swf |mp4) $ {
60일 만료;//60일 동안 캐시
}
위치 ~ .*.(js|css)?$ {
3시간 만료;//3시간 동안 캐시
}
위치 ~ .*.(html)?$ {
5분 만료;//5분 동안 캐시
}
access_log /opt/nginx/logs/b2b.log ; //Default access.log
error_log /opt/nginx/logs/b2b_err.log;//Default error.log
}
3: auto.conf의 내용은 다음과 같습니다.
서버 {
듣기 80; server_name www.autodesign.club autodesign.club;
위치 ^~ /auto_static/ {
}
위치 ~ .*$ {
rewrite ^/$ /MainCtrl? page=IndexPage last; > }
위치 ~ .*.(js|css)?$ {
3시간 만료;
}
access_log /opt/nginx/logs/auto.log;
error_log /opt/ nginx/logs/auto_err.log;
}
저작권 표시: 이 글은 블로거의 원본 글이므로 블로거의 허가 없이는 복제할 수 없습니다. 허가.