| 1 |
// $Id: README.txt,v 1.14 2008/01/21 21:45:31 wimleers Exp $ |
// $Id: README.txt,v 1.15 2008/01/22 11:57:28 wimleers Exp $ |
| 2 |
|
|
| 3 |
Description |
Description |
| 4 |
----------- |
----------- |
| 124 |
This is my configuration: |
This is my configuration: |
| 125 |
|
|
| 126 |
$conf = array( |
$conf = array( |
|
// Configure Drupal core's file URL rewriting ability. If any of the |
|
|
// functions listed here fails, Drupal will default to its own ("normal") |
|
|
// file URL rewriting function. |
|
|
'file_url_rewrite' => array( |
|
|
'cdn_file_url', // List the CDN module's URL rewrite function as the preferred server. |
|
|
), |
|
|
|
|
| 127 |
// CDN integration module settings. |
// CDN integration module settings. |
| 128 |
'cdn_url' => 'http://wimleers.cachefly.com/wimleers.com', |
'cdn_url' => 'http://wimleers.cachefly.com/wimleers.com', |
| 129 |
'cdn_sync_filters' => array( |
'cdn_sync_filters' => array( |
| 160 |
'update_urls_in_files' => TRUE, |
'update_urls_in_files' => TRUE, |
| 161 |
), |
), |
| 162 |
|
|
| 163 |
// Add all files in the files/js directory. This is only necessary if we |
// Add all files in the files/js directory, *but* update the URLs in the |
| 164 |
// use JS aggregation. |
// files. This is only necessary if we use JS aggregation. |
| 165 |
3 => array( |
3 => array( |
| 166 |
'paths' => array('sites/wimleers.com/files/js'), |
'paths' => array('sites/wimleers.com/files/js'), |
| 167 |
'pattern' => '.*', |
'pattern' => '.*', |
| 168 |
'ignored_dirs' => array('CVS'), |
'ignored_dirs' => array('CVS'), |
| 169 |
'unique' => 'filename', |
'unique' => 'filename', |
| 170 |
'unique_method' => 'mtime', |
'unique_method' => 'mtime', |
| 171 |
|
'update_urls_in_files' => TRUE, |
| 172 |
), |
), |
| 173 |
|
|
| 174 |
// Add all Javascript, CSS, image and font files from our themes. But |
// Add all Javascript, CSS, image and font files from our themes. But |