6ede33ccdb
Build and Push Docker Images / build (./surfsense_web, cpu, ./surfsense_web/Dockerfile, web, surfsense-web, ubuntu-24.04-arm, linux/arm64, arm64, , runner, false, cpu) (push) Blocked by required conditions
Build and Push Docker Images / build (./surfsense_web, cpu, ./surfsense_web/Dockerfile, web, surfsense-web, ubuntu-latest, linux/amd64, amd64, , runner, false, cpu) (push) Blocked by required conditions
Build and Push Docker Images / compute_version (push) Waiting to run
Build and Push Docker Images / build (./surfsense_backend, cpu, ./surfsense_backend/Dockerfile, backend, surfsense-backend, ubuntu-24.04-arm, linux/arm64, arm64, , production, false, cpu) (push) Blocked by required conditions
Build and Push Docker Images / build (./surfsense_backend, cu126, ./surfsense_backend/Dockerfile, backend, surfsense-backend, ubuntu-24.04-arm, linux/arm64, arm64, -cuda126, production, true, cuda126) (push) Blocked by required conditions
Build and Push Docker Images / build (./surfsense_backend, cu126, ./surfsense_backend/Dockerfile, backend, surfsense-backend, ubuntu-latest, linux/amd64, amd64, -cuda126, production, true, cuda126) (push) Blocked by required conditions
Build and Push Docker Images / build (./surfsense_backend, cu128, ./surfsense_backend/Dockerfile, backend, surfsense-backend, ubuntu-latest, linux/amd64, amd64, -cuda, production, true, cuda) (push) Blocked by required conditions
Build and Push Docker Images / verify_digests (push) Blocked by required conditions
Build and Push Docker Images / create_manifest (backend, surfsense-backend, , cpu) (push) Blocked by required conditions
Build and Push Docker Images / build (./surfsense_backend, cpu, ./surfsense_backend/Dockerfile, backend, surfsense-backend, ubuntu-latest, linux/amd64, amd64, , production, false, cpu) (push) Blocked by required conditions
Build and Push Docker Images / build (./surfsense_backend, cu128, ./surfsense_backend/Dockerfile, backend, surfsense-backend, ubuntu-24.04-arm, linux/arm64, arm64, -cuda, production, true, cuda) (push) Blocked by required conditions
Build and Push Docker Images / create_manifest (backend, surfsense-backend, -cuda, cuda) (push) Blocked by required conditions
Build and Push Docker Images / create_manifest (backend, surfsense-backend, -cuda126, cuda126) (push) Blocked by required conditions
Build and Push Docker Images / create_manifest (web, surfsense-web, , cpu) (push) Blocked by required conditions
Build and Push Docker Images / finalize_release (push) Blocked by required conditions
Obsidian Plugin Lint / lint (push) Waiting to run
50 lines
1.6 KiB
Caddyfile
50 lines
1.6 KiB
Caddyfile
{
|
|
# Optional ACME/global settings. These are harmless in the default :80
|
|
# localhost mode and become active when SURFSENSE_SITE_ADDRESS is a domain.
|
|
{$CERT_EMAIL}
|
|
acme_ca {$CERT_ACME_CA:https://acme-v02.api.letsencrypt.org/directory}
|
|
{$CERT_ACME_DNS}
|
|
servers {
|
|
client_ip_headers X-Forwarded-For X-Real-IP
|
|
trusted_proxies static {$TRUSTED_PROXIES:0.0.0.0/0}
|
|
}
|
|
}
|
|
|
|
(surfsense_proxy) {
|
|
request_body {
|
|
max_size {$SURFSENSE_MAX_BODY_SIZE:5GB}
|
|
}
|
|
|
|
# Frontend-owned auth page (the post-login token handler). More specific than
|
|
# /auth/*, so Caddy's matcher-specificity sort routes it here, not to backend.
|
|
reverse_proxy /auth/callback* frontend:3000
|
|
|
|
# Backend auth routes (FastAPI Users + OAuth helpers).
|
|
reverse_proxy /auth/* backend:8000
|
|
|
|
# Backend user profile routes (FastAPI Users users router, mounted at /users).
|
|
reverse_proxy /users/* backend:8000
|
|
|
|
# Backend REST, streaming, connector OAuth, and messaging gateway endpoints.
|
|
# FastAPI already serves /api/v1, so the path is forwarded unchanged.
|
|
reverse_proxy /api/v1/* backend:8000 {
|
|
flush_interval -1
|
|
}
|
|
|
|
# Zero sync auth context is a backend (FastAPI) endpoint. More specific than
|
|
# /zero/*, so Caddy's matcher-specificity sort routes it here, not to zero-cache.
|
|
reverse_proxy /zero/context backend:8000
|
|
|
|
# Zero accepts a single path-component base URL (Zero >= 0.6).
|
|
# Preserve /zero so browser cacheURL can be ${SURFSENSE_PUBLIC_URL}/zero.
|
|
reverse_proxy /zero/* zero-cache:4848
|
|
|
|
# Next.js app and frontend-owned API routes:
|
|
# /api/zero/*, /api/search, /api/contact, etc.
|
|
reverse_proxy /* frontend:3000
|
|
}
|
|
|
|
{$SURFSENSE_SITE_ADDRESS::80} {
|
|
import surfsense_proxy
|
|
}
|