8 lines
311 B
Nginx Configuration File
8 lines
311 B
Nginx Configuration File
# vim: ft=nginx
|
|
|
|
set_real_ip_from 0.0.0.0/0;
|
|
real_ip_header proxy_protocol;
|
|
log_format elb_pp '$proxy_protocol_addr - $remote_user [$time_local] '
|
|
'"$request" $status $body_bytes_sent '
|
|
'"$http_referer" "$http_user_agent"';
|
|
access_log /var/log/nginx/nginx.access.log elb_pp;
|