[object Object]

← back to Wallpaperhistory

Add clean /privacy route (AdSense URL consistency)

ec6babf8f948f17076bdeaf211d2f901b9c0fc68 · 2026-09-10 11:51:31 -0700 · Steve Abrams

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

Files touched

Diff

commit ec6babf8f948f17076bdeaf211d2f901b9c0fc68
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Thu Sep 10 11:51:31 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 6aba63f..218fd24 100644
--- a/server.js
+++ b/server.js
@@ -12,6 +12,7 @@ app.use((req, res, next) => {
 });
 
 app.use(express.static(path.join(__dirname, 'public')));
+app.get('/privacy', (req, res) => res.sendFile(path.join(__dirname, 'public', 'privacy.html')));
 
 app.get('/health', (req, res) => res.json({ status: 'ok', site: 'wallpaperhistory.com' }));
 

← 9cf0c0e Add discoverable AdSense privacy policy  ·  back to Wallpaperhistory  ·  (newest)