chore: add 105 runtime and openhands ops tooling

This commit is contained in:
john
2026-06-29 07:01:26 +08:00
parent 65e8a3a5a8
commit d7cbf3cc96
22 changed files with 1263 additions and 50 deletions
@@ -1,5 +1,6 @@
# g2.tkmind.cn → 301 跳转到 m.tkmind.cn(保留微信 webhook 直至后台改完服务器 URL)
# 安装:/etc/nginx/conf.d/g2.tkmind.cn.conf
# 不再依赖 19081 reverse tunnel / 10.10.* 内网地址,直接回源到 58.38.22.103:8081
server {
listen 80;
@@ -20,7 +21,7 @@ server {
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
location = /webhooks/wechat-mp/messages {
proxy_pass http://127.0.0.1:19081;
proxy_pass http://58.38.22.103:8081;
proxy_http_version 1.1;
proxy_set_header Host g2.tkmind.cn;
proxy_set_header X-Real-IP $remote_addr;
+4 -3
View File
@@ -1,6 +1,7 @@
# m.tkmind.cn → 103 Memind Portal (:8081)
# m.tkmind.cn → 105 nginx 直连 103 Memind Portal (58.38.22.103:8081)
# 安装:/etc/nginx/conf.d/m.tkmind.cn.conf
# 替换旧 ai_mind 配置,作为 Memind H5 正式公网入口
# 不再依赖 19081 reverse tunnel / 10.10.* 内网地址,直接回源到 58.38.22.103:8081
server {
listen 80;
@@ -23,7 +24,7 @@ server {
client_max_body_size 100M;
location = /webhooks/wechat-mp/messages {
proxy_pass http://127.0.0.1:19081;
proxy_pass http://58.38.22.103:8081;
proxy_http_version 1.1;
proxy_set_header Host m.tkmind.cn;
proxy_set_header X-Real-IP $remote_addr;
@@ -40,7 +41,7 @@ server {
}
location / {
proxy_pass http://127.0.0.1:19081;
proxy_pass http://58.38.22.103:8081;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
@@ -1,5 +1,6 @@
# wechat.m.tkmind.cn → 微信服务号消息推送专用域名
# 安装:/etc/nginx/conf.d/wechat.m.tkmind.cn.conf
# 不再依赖 19081 reverse tunnel / 10.10.* 内网地址,直接回源到 58.38.22.103:8081
server {
listen 80;
@@ -20,7 +21,7 @@ server {
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
location = /webhooks/wechat-mp/messages {
proxy_pass http://127.0.0.1:19081;
proxy_pass http://58.38.22.103:8081;
proxy_http_version 1.1;
proxy_set_header Host m.tkmind.cn;
proxy_set_header X-Real-IP $remote_addr;