Nginx 의 생산 환경 설정 사례
5806 단어 Nginx
글 목록
user nobody nobody; ##
worker_processes 4; ## worker , auto
worker_rlimit_nofile 51200; ##
error_log logs/error.log notice;
pid /var/run/nginx.pid;
events {
use epoll; ## epoll
worker_connections 51200; ## worker
}
http {
server_tokens off; ## nginx
include mime.types;
proxy_redirect off; ##
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
client_max_body_size 20m; ## body
client_body_buffer_size 256k; ## body
proxy_connect_timeout 90; ##
proxy_send_timeout 90; ##
proxy_read_timeout 90; ##
proxy_buffer_size 128k; ##
proxy_buffers 4 64k; ## number size
proxy_busy_buffers_size 128k; ## size
proxy_temp_file_write_size 128k; ##
default_type application/octet-stream;
charset utf-8; ##
client_body_temp_path /var/tmp/client_body_temp 1 2; ## body
proxy_temp_path /var/tmp/proxy_temp 1 2; ##
fastcgi_temp_path /var/tmp/fastcgi_temp 1 2; ## FastCGI
uwsgi_temp_path /var/tmp/uwsgi_temp 1 2; ## uwsgi
scgi_temp_path /var/tmp/scgi_temp 1 2; ##scgi
ignore_invalid_headers on; ##
server_names_hash_max_size 256; ##
server_names_hash_bucket_size 64; ## bucket
client_header_buffer_size 8k; ##
large_client_header_buffers 4 32k; ## number size
connection_pool_size 256; ##
request_pool_size 64k; ##
output_buffers 2 128k; ## number size
postpone_output 1460; ## ,
client_header_timeout 1m; ##
client_body_timeout 3m; ##
send_timeout 3m; ##
log_format main '$server_addr $remote_addr [$time_local] $msec+$connection '
'"$request" $status $connection $request_time $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
open_log_file_cache max=1000 inactive=20s min_uses=1 valid=1m;
access_log logs/access.log main;
log_not_found on;
sendfile on;
tcp_nodelay on; ## ,
tcp_nopush off; ##
reset_timedout_connection on; ##
keepalive_timeout 10 5; ## , keep-alive:timeout=5
keepalive_requests 100; ##
gzip on; ##
gzip_http_version 1.1; ##
gzip_vary on;
gzip_proxied any; ##
gzip_min_length 1024; ## gzip
gzip_comp_level 6; ##
gzip_buffers 16 8k; ## number size
gzip_proxied expired no-cache no-store private auth no_last_modified no_etag;
gzip_types text/plain application/x-javascript text/css application/xml application/json;
gzip_disable "MSIE [1-6]\.(?!.*SV1)";
upstream tomcat8080 {
ip_hash;
server 172.16.100.103:8080 weight=1 max_fails=2;
server 172.16.100.104:8080 weight=1 max_fails=2;
server 172.16.100.105:8080 weight=1 max_fails=2;
}
server {
listen 80;
server_name www.chan.com;
# config_apps_begin
root /data/webapps/htdocs;
access_log /var/logs/webapp.access.log main;
error_log /var/logs/webapp.error.log notice;
location / {
location ~* ^.*/favicon.ico$ {
root /data/webapps;
expires 180d; ## 180
break;
}
if ( !-f $request_filename ) {
proxy_pass http://tomcat8080;
break;
}
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
server {
listen 8088;
server_name nginx_status;
location / {
access_log off;
deny all;
return 503;
}
location /status {
stub_status on;
access_log off;
allow 127.0.0.1;
allow 172.16.100.71;
deny all;
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
linux2에 nginx 설치설치 가능한 nginx를 확인하고, 해당 nginx를 설치한다. localhost 혹은 해당 ip로 접속을 하면 nginx 화면을 볼 수 있다....
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.