File size: 1,330 Bytes
f072685 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | worker_processes auto;
pid /tmp/nginx.pid;
events {
worker_connections 1024;
}
http {
access_log /dev/stdout;
error_log /dev/stderr info;
include /etc/nginx/mime.types;
default_type application/octet-stream;
sendfile on;
tcp_nodelay on;
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
server {
listen ${PROXY_PORT};
server_name _;
client_max_body_size 0;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_read_timeout 86400;
proxy_send_timeout 86400;
proxy_buffering off;
location ~ ^/proxy/([0-9]+)/(.*)$ {
proxy_set_header X-Forwarded-Prefix /proxy/$1;
proxy_pass http://127.0.0.1:$1/$2$is_args$args;
}
location ~ ^/proxy/([0-9]+)$ {
return 308 /proxy/$1/;
}
location ~ ^/([0-9]+)/(.*)$ {
proxy_set_header X-Forwarded-Prefix /$1;
proxy_pass http://127.0.0.1:$1/$2$is_args$args;
}
location ~ ^/([0-9]+)$ {
return 308 /$1/;
}
location / {
proxy_pass http://127.0.0.1:${OPENCLAW_PORT};
}
}
}
|