/** * Generate nginx.conf for a single-tenant prod VM. * * Runs on the dev machine; output is uploaded to prod via SSH. Matches the * HTTP-only shape the inline generator used — certbot rewrites the server * block afterwards to add HTTPS when a cert is obtained. */ import type { FactiiiConfig } from '../types/index.js'; export interface GenerateProdNginxOptions { stage: string; domain: string; stackVersion?: string; } export declare function generateProdNginx(config: FactiiiConfig, opts: GenerateProdNginxOptions): string; //# sourceMappingURL=generate-prod-nginx.d.ts.map