diff --git a/www/sites/all/modules/akamai/akamai.admin.inc b/www/sites/all/modules/akamai/akamai.admin.inc
index 87e5940..8ff8208 100644
--- a/www/sites/all/modules/akamai/akamai.admin.inc
+++ b/www/sites/all/modules/akamai/akamai.admin.inc
@@ -62,6 +62,14 @@ function akamai_settings() {
     ),
     '#description'   => t('The default clearing action.  The options are <em>remove</em> (which removes the item from the Akamai cache) and <em>invalidate</em> (which leaves the item in the cache, but invalidates it so that the origin will be hit on the next request)')
   );
+
+  $form['AkamaiCC_otherPaths'] = array(
+    '#type'        => 'textarea',
+    '#title'       => t('Paths/URLs'),
+    '#default_value' => variable_get('AkamaiCC_otherPaths', ''),
+    '#description' => t('Enter one URL per line. URL entries should be relative to the basepath.'),
+  );
+
   $form['AkamaiCC_email'] = array(
     '#type'          => 'textfield',
     '#title'         => t('Email Notification Override'),
diff --git a/www/sites/all/modules/akamai/akamai.module b/www/sites/all/modules/akamai/akamai.module
index caa7438..5b498b1 100644
--- a/www/sites/all/modules/akamai/akamai.module
+++ b/www/sites/all/modules/akamai/akamai.module
@@ -178,7 +178,10 @@ function akamai_clear_url($paths_in, $params = array(), $node = NULL) {
   }
   // Get the system path and all aliases to this url
   $paths = array();
-    
+
+  // Get list of other URLs that should be clearned along with node updates
+  $paths_in = array_merge($paths_in, explode("\n", variable_get('AkamaiCC_otherPaths', '')));
+
   foreach ($paths_in as $path) {
     $paths = array_merge($paths, _akamai_get_all_paths($path, $node));
   }
