From f11792dff6e16ccefbaa3f6a7f2a97f3bc6a8263 Mon Sep 17 00:00:00 2001
From: Daryl <daryl@clubdeuce.net>
Date: Fri, 7 Dec 2018 21:09:37 -0500
Subject: [PATCH] VSCode Xdebug configuration update

The VSCode Xdebug configuration needs to match the PHP-FPM path map, not the host path map.
---
 .vscode/launch.json | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.vscode/launch.json b/.vscode/launch.json
index b9488f7..9e9388f 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -7,7 +7,7 @@
             "request": "launch",
             "port": 9000,
             "localSourceRoot": "${workspaceRoot}/www",
-            "serverSourceRoot": "/projects/wplib.box/www"
+            "serverSourceRoot": "/var/www"
         },
         {
             "name": "Launch currently open script",
@@ -18,4 +18,4 @@
             "port": 9000
         }
     ]
-}
\ No newline at end of file
+}