worker_processes 1;
|
|
pid /tmp/nginx.pid;
|
|
daemon off;
|
|
master_process off;
|
|
error_log stderr debug_core;
|
|
|
|
events {
|
|
debug_connection <YOUR IPv4>;
|
|
debug_connection <YOUR IPV6>;
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
default_type application/octet-stream;
|
|
client_body_temp_path /tmp/body 1;
|
|
|
|
access_log /tmp/nginx_access.log;
|
|
|
|
server {
|
|
# listen 8082 ssl;
|
|
# proxy protocol configuration for nginx 1.4.x:
|
|
listen 8082 accept_proxy_protocol=on;
|
|
# same with spdy enabled:
|
|
# listen 8082 spdy ssl accept_proxy_protocol=on;
|
|
listen [::]:8082 ipv6only=on;
|
|
ssl_certificate /your/certificate;
|
|
ssl_certificate_key /your/key;
|
|
server_name localhost;
|
|
# proxy protocol configuration for nginx 1.2.x:
|
|
# accept_proxy_protocol on;
|
|
|
|
location / {
|
|
proxy_pass http://127.0.0.1:8084;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_connect_timeout 10s;
|
|
proxy_read_timeout 10s;
|
|
send_proxy_protocol on;
|
|
}
|
|
}
|
|
}
|