Sync independent Buzz and Gitea domain proxies
CI / Detect Changed Paths (push) Waiting to run
CI / Rust Lint (push) Blocked by required conditions
CI / Unit Tests (push) Blocked by required conditions
CI / Desktop Core (push) Blocked by required conditions
CI / Desktop Smoke E2E (1) (push) Blocked by required conditions
CI / Desktop Smoke E2E (2) (push) Blocked by required conditions
CI / Desktop Smoke E2E (3) (push) Blocked by required conditions
CI / Desktop Smoke E2E (4) (push) Blocked by required conditions
CI / Desktop (push) Blocked by required conditions
CI / Desktop E2E Relay (push) Blocked by required conditions
CI / Desktop E2E Integration (1/2) (push) Blocked by required conditions
CI / Desktop E2E Integration (2/2) (push) Blocked by required conditions
CI / Desktop E2E Integration (push) Blocked by required conditions
CI / Backend Integration (relay e2e) (push) Blocked by required conditions
CI / Relay E2E (push) Blocked by required conditions
CI / Web (push) Blocked by required conditions
CI / Mobile (push) Blocked by required conditions
CI / Security (push) Blocked by required conditions
CI / Dead Token Reference Guard (push) Waiting to run
CI / Server Cross-Compile (aarch64-unknown-linux-musl) (push) Blocked by required conditions
CI / Server Cross-Compile (x86_64-unknown-linux-musl) (push) Blocked by required conditions
CI / Windows Rust (x86_64-pc-windows-msvc) (push) Blocked by required conditions
CI / Desktop Build (macOS) (push) Blocked by required conditions
Docker image / Build (linux/amd64) (push) Waiting to run
Docker image / Build (linux/arm64) (push) Waiting to run
Docker image / Merge release multi-arch manifest (push) Blocked by required conditions
Docker image / Merge debug multi-arch manifest (push) Blocked by required conditions
Docker image / Build public push gateway (linux/amd64) (push) Waiting to run
Docker image / Build public push gateway (linux/arm64) (push) Waiting to run
Docker image / Publish public push gateway image (push) Blocked by required conditions
helm chart / lint + unittest + render matrix (push) Waiting to run
helm chart / install on kind (gated) (push) Blocked by required conditions
helm chart / publish chart to GHCR (push) Blocked by required conditions
Sprig / Build (aarch64-unknown-linux-musl) (push) Waiting to run
Sprig / Build (x86_64-unknown-linux-musl) (push) Waiting to run
Sprig / Publish rolling release (push) Blocked by required conditions
Sprig / Publish tagged release (push) Blocked by required conditions

Signed-off-by: cls_???? <908705107@qq.com>
This commit is contained in:
2026-08-15 16:44:51 +08:00
parent 2d2e9d17ed
commit 8eea8eff83
2 changed files with 84 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
server {
listen 80;
listen [::]:80;
server_name buzz.zquant.site;
location ^~ /.well-known/acme-challenge/ {
root /var/www/html;
}
location / {
return 301 https://buzz.zquant.site$request_uri;
}
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name buzz.zquant.site;
client_max_body_size 100m;
access_log /var/log/nginx/buzz.access.log combined;
error_log /var/log/nginx/buzz.error.log warn;
ssl_certificate /etc/letsencrypt/live/buzz.zquant.site/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/buzz.zquant.site/privkey.pem;
include /etc/letsencrypt/options-ssl-nginx.conf;
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
location / {
proxy_pass http://127.0.0.1:3300;
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 https;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $zq_connection_upgrade;
proxy_read_timeout 3600s;
proxy_send_timeout 3600s;
proxy_buffering off;
}
}
+42
View File
@@ -0,0 +1,42 @@
server {
listen 80;
listen [::]:80;
server_name gitea.zquant.site;
location ^~ /.well-known/acme-challenge/ {
root /var/www/html;
}
location / {
return 301 https://gitea.zquant.site$request_uri;
}
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name gitea.zquant.site;
client_max_body_size 512m;
access_log /var/log/nginx/gitea.access.log combined;
error_log /var/log/nginx/gitea.error.log warn;
ssl_certificate /etc/letsencrypt/live/gitea.zquant.site/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/gitea.zquant.site/privkey.pem;
include /etc/letsencrypt/options-ssl-nginx.conf;
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
location / {
proxy_pass http://127.0.0.1:3001;
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 https;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Port 443;
proxy_read_timeout 300s;
proxy_send_timeout 300s;
proxy_buffering off;
}
}