diff --git a/configuration/sample-development.engine.ini b/configuration/sample-development.engine.ini
index 9f5646f42edbc3c1858e8035e47c436726a08e5d..c14bc8d7e6f49d2a609450746ad2be1a3ae48756 100644
--- a/configuration/sample-development.engine.ini
+++ b/configuration/sample-development.engine.ini
@@ -45,17 +45,21 @@ loglevel="info"
 
 [api]
 
-# STEERING
+## STEERING ##
+
+# The URL to get the health status 
 api_steering_status = "http://localhost:8000/api/v1/"
 # The URL to get the Calendar via Steering
 api_steering_calendar="http://localhost:8000/api/v1/playout"
 # The URL to get show details via Steering
 api_steering_show="http://localhost:8000/api/v1/shows/${ID}/"
 
-# TANK
+## TANK ##
+
+# The URL to get the health status 
 api_tank_status = "http://localhost:8040/healthz/"
 # The URL to get playlist details via Tank
-api_tank_playlist="http://localhost:8040/api/v1/shows/${SLUG}/playlists"
+api_tank_playlist="http://localhost:8040/api/v1/playlists/${ID}"
 
 # URL and Port of the API endpoints exposed by engine
 exposed_api_url="http://localhost:3333/api/v1/"
diff --git a/configuration/sample-docker.engine.ini b/configuration/sample-docker.engine.ini
index 399a49d6d3019755a1600c652189e20f598b8e8b..84c59454cda95848a6eb2914ed9ce858f59f3ea1 100644
--- a/configuration/sample-docker.engine.ini
+++ b/configuration/sample-docker.engine.ini
@@ -45,17 +45,22 @@ loglevel="info"
 
 [api]
 
-# STEERING
-api_steering_status = "http://172.17.0.1:8000/api/v1/"
+## STEERING ##
+
+# The URL to get the health status 
+api_steering_status = "http://127.0.0.1:8000/api/v1/"
 # The URL to get the Calendar via Steering
-api_steering_calendar="http://172.17.0.1:8000/api/v1/playout"
+api_steering_calendar="http://127.0.0.1:8000/api/v1/playout"
 # The URL to get show details via Steering
-api_steering_show="http://172.17.0.1:8000/api/v1/shows/${ID}/"
+api_steering_show="http://127.0.0.1:8000/api/v1/shows/${ID}/"
+
+## TANK ##
 
-# TANK
-api_tank_status = "http://172.17.0.1:8040/healthz/"
+# The URL to get the health status 
+api_tank_status = "http://127.0.0.1:8040/healthz/"
 # The URL to get playlist details via Tank
-api_tank_playlist="http://172.17.0.1:8040/api/v1/shows/${SLUG}/playlists"
+api_tank_playlist="http://127.0.0.1:8040/api/v1/playlists/${ID}"
+
 
 # URL and Port of the API endpoints exposed by engine
 exposed_api_url="http://172.17.0.1:3333/api/v1/"
diff --git a/configuration/sample-production.engine.ini b/configuration/sample-production.engine.ini
index f28b21addee56f543c29c5bad1476f909801bff0..1fb22e8756825e65b138abea9e8570e3fa0ebf0f 100644
--- a/configuration/sample-production.engine.ini
+++ b/configuration/sample-production.engine.ini
@@ -45,17 +45,19 @@ loglevel="info"
 
 [api]
 
-# STEERING
-api_steering_status = "http://localhost:8000/api/v1/"
+# The URL to get the health status 
+api_steering_status = "http://aura.local:8000/api/v1/"
 # The URL to get the Calendar via Steering
-api_steering_calendar="http://localhost:8000/api/v1/playout"
+api_steering_calendar="http://aura.local:8000/api/v1/playout"
 # The URL to get show details via Steering
-api_steering_show="http://localhost:8000/api/v1/shows/${ID}/"
+api_steering_show="http://aura.local:8000/api/v1/shows/${ID}/"
 
-# TANK
-api_tank_status = "http://localhost:8040/healthz/"
+## TANK ##
+
+# The URL to get the health status 
+api_tank_status = "http://aura.local:8040/healthz/"
 # The URL to get playlist details via Tank
-api_tank_playlist="http://localhost:8040/api/v1/shows/${SLUG}/playlists"
+api_tank_playlist="http://aura.local:8040/api/v1/playlists/${ID}"
 
 # URL and Port of the API endpoints exposed by engine
 exposed_api_url="http://localhost:3333/api/v1/"