## URPMI-PROXY: ## ============ ## urpmi-proxy's config file, defaults are commented out. ## urpmi-proxy is a cgi script that's to be used as a repository mirror, it'll ## get what you need and download it from configured sources. ## Define your sources here; The paths have to be configured to stop at the ## base path of the mirror, most of them end in either /mageia or /Mageia . ## (don't end them on a / !) ## possible sources: ## urpmi the urpmi sources of this machine ## mirrorlist://url a mirrorlist url (url can be $MIRRORLIST) ## file://path a local path on the filesystem ## http://server/path an http mirror ## ftp://server/path an ftp mirror ## rsync://server/path an rsync mirror (rsync is not yet supported) # $sources = [ ## 'file:///var/lib/urpmi-proxy/repository', ## local extra repos # 'urpmi' # ]; ## Location of the logfile, it's a request log with cache status results. # $logfile = '/var/log/urpmi-proxy.log'; ## Debug # $debug = 0; ## Define the urpmi-proxy cache (be careful, can take a huge amount of space). # $cache_path = '/var/cache/urpmi-proxy'; ## Define the temporary cache which is used while downloading files. ## (Keep this path preferably in the same filesystem as the cache_path.) # $cache_tmp_path = '/var/tmp/urpmi-proxy'; ## These files will always be checked for newer versions. # $check_updates_only_files = '(MD5SUM|descriptions)$'; ## These files will not be checked for newer versions if they exist. # $check_no_updates_files = undef; ## These files will be merged from every sources. # $merge_files = 'media.cfg'; ## These are the tuning settings when downloading files. # $connect_timeout = 120; # $ftp_response_timeout = 30; # $max_stall_speed = 8192; # $max_stall_time = 60;