fix: align startup copy with 2026 founding and deploy hybrid rendering
- Replace fabricated 12-year/500+/8+ team experience claims with 2026 founding, first-client co-creation, professional team wording - Remove fake case studies and unverified certifications from seeds, cases page, products and ERP upgrade page - Enable Next.js standalone output and production hybrid deployment (Dockerfile.prod, docker-compose.server.yml, Nginx nextjs upstream) - Add linux-musl Prisma engine target and production crypto key build - Sync production CMS database with cleaned seed content
This commit was merged in pull request #21.
This commit is contained in:
@@ -67,6 +67,10 @@ http {
|
||||
server jenkins:8080;
|
||||
}
|
||||
|
||||
upstream novavis_authority {
|
||||
server novavis-authority:8080;
|
||||
}
|
||||
|
||||
# Next.js 混合渲染服务(SSR/ISR/API Routes)
|
||||
# 必须与 docker-compose.server.yml 中 Next.js 服务名/端口一致
|
||||
upstream nextjs_app {
|
||||
@@ -182,7 +186,7 @@ http {
|
||||
}
|
||||
|
||||
# 管理后台与 Draft Mode:代理到 Next.js,Cookie 透传以支持 draft 预览
|
||||
location /admin/ {
|
||||
location /admin {
|
||||
limit_req zone=general burst=20 nodelay;
|
||||
proxy_pass http://nextjs_app;
|
||||
proxy_hide_header X-Powered-By;
|
||||
|
||||
Reference in New Issue
Block a user