* array('//symlink' => '/real/target/path') // unix * array('//static' => 'D:\\staticStorage') // Windows * */ $min_symlinks = array(); /** * If you upload files from Windows to a non-Windows server, Windows may report * incorrect mtimes for the files. This may cause Minify to keep serving stale * cache files when source file changes are made too frequently (e.g. more than * once an hour). * * Immediately after modifying and uploading a file, use the touch command to * update the mtime on the server. If the mtime jumps ahead by a number of hours, * set this variable to that number. If the mtime moves back, this should not be * needed. * * In the Windows SFTP client WinSCP, there's an option that may fix this * issue without changing the variable below. Under login > environment, * select the option "Adjust remote timestamp with DST". * @link http://winscp.net/eng/docs/ui_login_environment#daylight_saving_time */ $min_uploaderHoursBehind = 0; /** * Advanced: you can replace some of the PHP classes Minify uses to serve requests. * To do this, assign a callable to one of the elements of the $min_factories array. * * You can see the default implementations (and what gets passed in) in index.php. */ //$min_factories['minify'] = ... a callable accepting a Minify\App object //$min_factories['controller'] = ... a callable accepting a Minify\App object