[object Object]

← back to Customdigitalmurals

Add clean /privacy route (AdSense URL consistency)

b5e52c641c77481a724edf444358d36de949b0ab · 2026-09-10 11:51:19 -0700 · Steve Abrams

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>

Files touched

Diff

commit b5e52c641c77481a724edf444358d36de949b0ab
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Thu Sep 10 11:51:19 2026 -0700

    Add clean /privacy route (AdSense URL consistency)
    
    Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
---
 server.js | 1 +
 1 file changed, 1 insertion(+)

diff --git a/server.js b/server.js
index 93c8feb..09ce71d 100644
--- a/server.js
+++ b/server.js
@@ -99,6 +99,7 @@ app.use(require('../_shared/api-vendor-redact'));
 
 require('../_shared/_universal-promo-banner')(app, { slug: 'customdigitalmurals' });
 app.use(express.static(path.join(__dirname, 'public'), { maxAge: '1d' }));
+app.get('/privacy', (req, res) => res.sendFile(path.join(__dirname, 'public', 'privacy.html')));
 
 // Health check (both paths — /health for direct probe, /api/health for fleet standard)
 app.get('/health', (_req, res) => res.json({ ok: true, count: ALL.length }));

← 6c46270 Add AdSense-compliant privacy policy page + footer link + /p  ·  back to Customdigitalmurals  ·  TK-11341: resync package-lock.json (pg/dotenv) so deploy npm 516a992 →