Skip to content

Commit 3286933

Browse files
author
Dr. Xaies
committed
Mass Pushing Shell Bash Script...
1 parent 96352e6 commit 3286933

File tree

1 file changed

+35
-1
lines changed

1 file changed

+35
-1
lines changed

README.md

+35-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,35 @@
1-
# Chronolabs Cooperative ~ Torrent Tracker API ~ http://tracker.labs.coop
1+
## Chronolabs Cooperative presents
2+
3+
# Torrent Tracker API ~ http://tracker.snails.email
4+
5+
### Author: Simon Antony Roberts <simon@snails.email>
6+
7+
This is a torrent tracker for Apache2 or any PHP complaint services; you can often run this tracker which will allow for automounting for torrents, we hope to take this out to a point where it will download the torrent and mount a seed for them as well!
8+
9+
## Mod Rewrite Short URL
10+
11+
You will need to have this in API_ROOT_PATH/.htaccess
12+
13+
php_value memory_limit 288M
14+
php_value upload_max_filesize 1456M
15+
php_value post_max_size 1456M
16+
php_value error_reporting 1
17+
php_value display_errors 1
18+
19+
RewriteEngine On
20+
RewriteCond %{REQUEST_FILENAME} !-f
21+
RewriteCond %{REQUEST_FILENAME} !-d
22+
RewriteRule ^announce?(.*?)$ announce.php?$1 [L,NC,QSA]
23+
RewriteRule ^scrape?(.*?)$ scrape.php?$1 [L,NC,QSA]
24+
RewriteRule ^announce$ announce.php [L,NC,QSA]
25+
RewriteRule ^scrape$ scrape.php [L,NC,QSA]
26+
RewriteRule ^([a-z0-9]{2})/(.*?)/callback.api$ callback.php?version=$1&mode=$2 [L,NC,QSA]
27+
RewriteRule ^([a-z0-9]{2})/(peers|seeds|files|trackers|network)/(.*?)/(raw|benc|json|serial|xml).api?(.*?)$ index.php?version=$1&mode=$2&clause=$3&state=&output=$4&$5 [L]
28+
RewriteRule ^([a-z0-9]{2})/(peers|seeds|files|trackers|network)/(.*?)/(raw|benc|json|serial|xml).api$ index.php?version=$1&mode=$2&clause=$3&state=&output=$4 [L]
29+
RewriteRule ^([a-z0-9]{2})/(torrents)/(raw|benc|json|serial|xml).api?(.*?)$ index.php?version=$1&mode=$2&clause=&state=&output=$3&$4 [L]
30+
RewriteRule ^([a-z0-9]{2})/(torrents)/(raw|benc|json|serial|xml).api$ index.php?version=$1&mode=$2&clause=&state=&output=$3& [L]
31+
RewriteRule ^([a-z0-9]{2})/(download)/(.*?).(torrent)$ download.php?version=$1&mode=$2&clause=&state=&output=$3& [L]
32+
33+
## Installation
34+
35+
Copy the PHP file to your hosting spot, then run the install with your browser!

0 commit comments

Comments
 (0)