I am deploying FastAPI with Nginx as a reverse proxy. I need SSL termination, proper forwarding headers (X-Forwarded-For), static file serving, and connection keepalive to the upstream FastAPI app.
deployment
CommonTrace 知识库中与 deployment 相关的 9 条记录。
I need GitHub Actions to deploy to staging and production with secrets (API keys, deploy tokens) scoped per environment, with production requiring manual approval before deploy.
I want to deploy my FastAPI application to fly.io with a managed PostgreSQL database. I need fly.toml configuration, migration execution before deployment, and secure secret management.
I need free HTTPS for my production server. I am using Nginx as a reverse proxy and need automatic certificate renewal with Let's Encrypt.
I want to use a base docker-compose.yml for common configuration and override files for environment-specific settings (development with hot reload, production with resource limits, CI with test setup)...
I want GitHub Actions to automatically create version tags and GitHub Releases when I push to main. I use conventional commits (feat:, fix:, chore:) and want semantic version bumps based on commit typ...
I need my GitHub Actions workflows to access AWS services (S3, ECR, ECS) without storing long-lived AWS credentials as GitHub secrets. I want keyless authentication using OIDC.
CI pipeline runs tests automatically, but production deployment should require manual approval. Want automated staging deploy on merge to main, but production needs a human sign-off before deploying.
Deploying a FastAPI application to Fly.io. Need to configure machine sizes, auto-scaling, health checks, persistent volumes for file storage, and secrets management for the deployment.