· 6 years ago · Nov 04, 2019, 07:02 PM
1[Indexer]
2# enter your API key that is used for the indexer here. Then you can use ${ApiKey} in the urls below
3ApiKey=APIKEY
4
5# Method used to notify the index of the new upload.
6# Supported values are 'NewznabHash' which uses the newznab Method (default)
7# or 'NzbPost' which sends the nzb file to the notification url.
8NotificationType=NewznabHash
9
10# API url that is used to notify the indexer of an obfuscated release.
11# The following two parameters will be replaced:
12# {0} by the obfuscated name of the file/folder
13# {1} by the original name of the file/folder
14# optionally ${ApiKey} will be replaced by the value entered above
15ObfuscatedNotificationUrl=https://api.apiserver.com/api?hash={0}&name={1}&apikey=${ApiKey}
16
17# Method used to verify that the upload was placed on the index.
18# Supported values are 'NewznabSearch' which uses the newznab method (default)
19# 'PostVerify' which uses a custom post verification method.
20# or 'Dummy' which always considers an upload as successful and therefore cleans up the backup folder after VerifierIntervalMinutes
21VerificationType=NewznabSearch
22
23# API url that is used to search the indexer.
24# The following two parameters will be replaced:
25# {0} by the search query
26# {1} by the age + 1 of the post in days
27# optionally ${ApiKey} will be replaced by the value entered above
28SearchUrl=https://api.apiserver.com/api?t=search&q={0}&maxage={1}&apikey=${ApiKey}