1# HTTP default content type
2http.default_content_type = application/octet-stream
3
4# MIME types mapping filename
5# MIME types file format: MIME_type  extensions
6# such as:  image/jpeg	jpeg jpg jpe
7# you can use apache's MIME file: mime.types
8http.mime_types_filename = mime.types
9
10# if use token to anti-steal
11# default value is false (0)
12http.anti_steal.check_token = false
13
14# token TTL (time to live), seconds
15# default value is 600
16http.anti_steal.token_ttl = 900
17
18# secret key to generate anti-steal token
19# this parameter must be set when http.anti_steal.check_token set to true
20# the length of the secret key should not exceed 128 bytes
21http.anti_steal.secret_key = FastDFS1234567890
22
23# return the content of the file when check token fail
24# default value is empty (no file sepecified)
25http.anti_steal.token_check_fail = /home/yuqing/fastdfs/conf/anti-steal.jpg
26
27# if support multi regions for HTTP Range
28# default value is true
29http.multi_range.enabed = true
30