Spaces:
Running
Running
| 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}; | |
| } | |
| } | |
| } | |