server {
? ? listen? *:80 default_server;
? ? server_name aaa.com;
? ? client_body_buffer_size? ? 32k;
? ? client_header_buffer_size 16k;
? ? large_client_header_buffers 4 16k;
? ? location /component
? ? {
? ? ? ? ? ? ? ? proxy_set_header? ? Host $http_host;
? ? ? ? ? ? ? ? proxy_set_header? ? X-Real-IP? ? ? ? ? ? ? $remote_addr;
? ? ? ? ? ? ? ? proxy_set_header? ? X-Forwarded-For $proxy_add_x_forwarded_for;
? ? ? ? ? ? ? ? proxy_connect_timeout? ? ? 240;
? ? ? ? ? ? ? ? proxy_send_timeout? ? ? ? 240;
? ? ? ? ? ? ? ? proxy_read_timeout? ? ? ? 240;
? ? ? ? ? ? ? ? proxy_pass http://192.168.2.69:8080;
? ? ? ? ? ? ? ? proxy_redirect off;
}
? ? location /ngx_status
? ? {
? ? ? ? stub_status on;
? ? ? ? access_log off;
? ? ? ? #allow 127.0.0.1;
? ? ? ? #deny all;
? ? }
? ? access_log /var/log/nginx_access.log;
? ? error_log /var/log/nginx_error.log;
}