aboutsummaryrefslogtreecommitdiffstats
path: root/urpmi-proxy.conf
blob: bb177181eb35ae1127bb9a0c0b6d04e453001fb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
## 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'
# ];

## Define your proxy if needed in form 'hostname:port'
# $proxy = '';

## 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 = undef;

## These files will not be checked for newer versions if they exist.
# $check_no_updates_files = '\.rpm$';

## These files will be merged from every sources.
# $merge_files = undef;

## These are the tuning settings when downloading files.
## If you have multiple sources, you might keep connect_timeout very low (5s)
# $connect_timeout = 120;
# $ftp_response_timeout = 30;
# $max_stall_speed = 8192;
# $max_stall_time = 60;