feat(ops): v4.0.7 HQ 活动图快链与勾选导出

HQ 指定一张活动图为勾选主合伙人合成 PNG/zip;城市合伙人页增加快链与单下/导出。

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-09-01 15:12:10 +08:00
parent eeee55e215
commit cdc4b82931
21 changed files with 1041 additions and 28 deletions
+26
View File
@@ -33,6 +33,19 @@ server {
client_max_body_size 50m;
location ~ ^/api/v1/admin/activity-posters/[^/]+/partner-pack$ {
proxy_pass http://127.0.0.1:8190;
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 Connection "";
proxy_buffering off;
proxy_read_timeout 120s;
proxy_send_timeout 120s;
}
location / {
proxy_pass http://127.0.0.1:8190;
proxy_http_version 1.1;
@@ -183,6 +196,19 @@ server {
include /opt/dukang-staging/deploy/nginx-no-crawler.conf;
location ~ ^/api/v1/admin/activity-posters/[^/]+/partner-pack$ {
proxy_pass http://127.0.0.1:8190;
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 Connection "";
proxy_buffering off;
proxy_read_timeout 120s;
proxy_send_timeout 120s;
}
location /api/ {
proxy_pass http://127.0.0.1:8190;
proxy_http_version 1.1;
+26
View File
@@ -31,6 +31,19 @@ server {
include /opt/dukang/deploy/nginx-deploy-webhook.conf;
location ~ ^/api/v1/admin/activity-posters/[^/]+/partner-pack$ {
proxy_pass http://127.0.0.1:8090;
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 Connection "";
proxy_buffering off;
proxy_read_timeout 120s;
proxy_send_timeout 120s;
}
location / {
proxy_pass http://127.0.0.1:8090;
proxy_http_version 1.1;
@@ -173,6 +186,19 @@ server {
include /opt/dukang/deploy/nginx-no-crawler.conf;
location ~ ^/api/v1/admin/activity-posters/[^/]+/partner-pack$ {
proxy_pass http://127.0.0.1:8090;
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 Connection "";
proxy_buffering off;
proxy_read_timeout 120s;
proxy_send_timeout 120s;
}
location /api/ {
proxy_pass http://127.0.0.1:8090;
proxy_http_version 1.1;