Spaces:
Running
Running
File size: 2,718 Bytes
cdf9dc5 1194941 cdf9dc5 1194941 cdf9dc5 1194941 cdf9dc5 1194941 cdf9dc5 1194941 cdf9dc5 1194941 cdf9dc5 1194941 cdf9dc5 1194941 cdf9dc5 1194941 cdf9dc5 1194941 cdf9dc5 1194941 cdf9dc5 1194941 cdf9dc5 | 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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | 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 Authorization "Bearer ${OPENCLAW_GATEWAY_PASSWORD}";
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_read_timeout 86400;
proxy_send_timeout 86400;
proxy_buffering off;
location = /tg-webhook {
proxy_set_header Authorization "";
proxy_pass http://127.0.0.1:8787/tg-webhook;
proxy_buffering off;
proxy_connect_timeout 60s;
proxy_send_timeout 60s;
proxy_read_timeout 60s;
}
location /tg-webhook/ {
proxy_set_header Authorization "";
proxy_pass http://127.0.0.1:8787/tg-webhook/;
proxy_buffering off;
proxy_connect_timeout 60s;
proxy_send_timeout 60s;
proxy_read_timeout 60s;
}
location = /code {
return 308 /code/;
}
location /code/ {
proxy_set_header Authorization "";
proxy_set_header X-Forwarded-Prefix /code;
proxy_pass http://127.0.0.1:${CODE_PORT}/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_set_header Host $host;
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};
}
}
}
|