├── CNAME ├── README.md ├── favicon.ico ├── favicon.png ├── fonts ├── HelveticaNeue.eot ├── HelveticaNeue.svg ├── HelveticaNeue.ttf ├── HelveticaNeue.woff ├── HelveticaNeueBold.eot ├── HelveticaNeueBold.svg ├── HelveticaNeueBold.ttf ├── HelveticaNeueBold.woff ├── HelveticaNeueLight.eot ├── HelveticaNeueLight.svg ├── HelveticaNeueLight.ttf └── HelveticaNeueLight.woff ├── images ├── logo.png └── logo_white.png ├── index.html └── style.css /CNAME: -------------------------------------------------------------------------------- 1 | openwebtorrent.com 2 | www.openwebtorrent.com 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # openwebtorrent-www 2 | 3 | The code that runs the OpenWebTorrent website: [https://openwebtorrent.com](https://openwebtorrent.com) 4 | 5 | Check the health of a torrent in WebTorrent and BitTorrent [https://checker.openwebtorrent.com](https://checker.openwebtorrent.com) 6 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebTorrent/openwebtorrent-www/505797adef1f1060883f22a81d58c97c46bdf5f2/favicon.ico -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebTorrent/openwebtorrent-www/505797adef1f1060883f22a81d58c97c46bdf5f2/favicon.png -------------------------------------------------------------------------------- /fonts/HelveticaNeue.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebTorrent/openwebtorrent-www/505797adef1f1060883f22a81d58c97c46bdf5f2/fonts/HelveticaNeue.eot -------------------------------------------------------------------------------- /fonts/HelveticaNeue.svg: -------------------------------------------------------------------------------- 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 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 424 | 425 | 426 | 427 | 428 | 429 | 430 | 431 | 432 | 433 | 434 | 435 | 436 | 437 | 438 | 439 | 440 | 441 | 442 | 443 | 444 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 452 | 453 | 454 | 455 | 456 | 457 | 458 | 459 | 460 | 461 | 462 | 463 | 464 | 465 | 466 | 467 | 468 | 469 | 470 | 471 | 472 | 473 | 474 | 475 | 476 | 477 | 478 | 479 | 480 | 481 | 482 | 483 | 484 | 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 493 | 494 | 495 | 496 | 497 | 498 | 499 | 500 | 501 | 502 | 503 | 504 | 505 | 506 | 507 | 508 | 509 | 510 | 511 | 512 | 513 | 514 | 515 | 516 | 517 | 518 | 519 | 520 | 521 | 522 | 523 | 524 | 525 | 526 | 527 | 528 | 529 | 530 | 531 | 532 | 533 | 534 | 535 | 536 | 537 | 538 | 539 | 540 | 541 | 542 | 543 | 544 | 545 | 546 | 547 | 548 | 549 | 550 | 551 | 552 | 553 | 554 | 555 | 556 | 557 | 558 | 559 | 560 | 561 | 562 | 563 | 564 | 565 | 566 | 567 | 568 | 569 | 570 | 571 | 572 | 573 | 574 | 575 | 576 | 577 | 578 | 579 | 580 | 581 | 582 | 583 | 584 | 585 | 586 | 587 | 588 | 589 | 590 | 591 | 592 | 593 | 594 | 595 | 596 | 597 | 598 | 599 | 600 | 601 | 602 | 603 | 604 | 605 | 606 | 607 | 608 | 609 | 610 | 611 | 612 | 613 | 614 | 615 | 616 | 617 | 618 | 619 | 620 | 621 | 622 | 623 | 624 | 625 | 626 | 627 | -------------------------------------------------------------------------------- /fonts/HelveticaNeue.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebTorrent/openwebtorrent-www/505797adef1f1060883f22a81d58c97c46bdf5f2/fonts/HelveticaNeue.ttf -------------------------------------------------------------------------------- /fonts/HelveticaNeue.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebTorrent/openwebtorrent-www/505797adef1f1060883f22a81d58c97c46bdf5f2/fonts/HelveticaNeue.woff -------------------------------------------------------------------------------- /fonts/HelveticaNeueBold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebTorrent/openwebtorrent-www/505797adef1f1060883f22a81d58c97c46bdf5f2/fonts/HelveticaNeueBold.eot -------------------------------------------------------------------------------- /fonts/HelveticaNeueBold.svg: -------------------------------------------------------------------------------- 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 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 424 | 425 | 426 | 427 | 428 | 429 | 430 | 431 | 432 | 433 | 434 | 435 | 436 | 437 | 438 | 439 | 440 | 441 | 442 | 443 | 444 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 452 | 453 | 454 | 455 | 456 | 457 | 458 | 459 | 460 | 461 | 462 | 463 | 464 | 465 | 466 | 467 | 468 | 469 | 470 | 471 | 472 | 473 | 474 | 475 | 476 | 477 | 478 | 479 | 480 | 481 | 482 | 483 | 484 | 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 493 | 494 | 495 | 496 | 497 | 498 | 499 | 500 | 501 | 502 | 503 | 504 | 505 | 506 | 507 | 508 | 509 | 510 | 511 | 512 | 513 | 514 | 515 | 516 | 517 | 518 | 519 | 520 | 521 | 522 | 523 | 524 | 525 | 526 | 527 | 528 | 529 | 530 | 531 | 532 | 533 | 534 | 535 | 536 | 537 | 538 | 539 | 540 | 541 | 542 | 543 | 544 | 545 | 546 | 547 | 548 | 549 | 550 | 551 | 552 | 553 | 554 | 555 | 556 | 557 | 558 | 559 | 560 | 561 | 562 | 563 | 564 | 565 | 566 | 567 | 568 | 569 | 570 | 571 | 572 | 573 | 574 | 575 | 576 | 577 | 578 | 579 | 580 | 581 | 582 | 583 | 584 | 585 | 586 | 587 | 588 | 589 | 590 | 591 | 592 | 593 | 594 | 595 | 596 | 597 | 598 | 599 | 600 | 601 | 602 | 603 | 604 | 605 | 606 | 607 | 608 | 609 | 610 | 611 | 612 | 613 | 614 | 615 | 616 | 617 | 618 | 619 | 620 | 621 | 622 | 623 | 624 | 625 | 626 | 627 | 628 | 629 | 630 | 631 | 632 | 633 | 634 | 635 | 636 | 637 | 638 | 639 | -------------------------------------------------------------------------------- /fonts/HelveticaNeueBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebTorrent/openwebtorrent-www/505797adef1f1060883f22a81d58c97c46bdf5f2/fonts/HelveticaNeueBold.ttf -------------------------------------------------------------------------------- /fonts/HelveticaNeueBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebTorrent/openwebtorrent-www/505797adef1f1060883f22a81d58c97c46bdf5f2/fonts/HelveticaNeueBold.woff -------------------------------------------------------------------------------- /fonts/HelveticaNeueLight.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebTorrent/openwebtorrent-www/505797adef1f1060883f22a81d58c97c46bdf5f2/fonts/HelveticaNeueLight.eot -------------------------------------------------------------------------------- /fonts/HelveticaNeueLight.svg: -------------------------------------------------------------------------------- 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 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 424 | 425 | 426 | 427 | 428 | 429 | 430 | 431 | 432 | 433 | 434 | 435 | 436 | 437 | 438 | 439 | 440 | 441 | 442 | 443 | 444 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 452 | 453 | 454 | 455 | 456 | 457 | 458 | 459 | 460 | 461 | 462 | 463 | 464 | 465 | 466 | 467 | 468 | 469 | 470 | 471 | 472 | 473 | 474 | 475 | 476 | 477 | 478 | 479 | 480 | 481 | 482 | 483 | 484 | 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 493 | 494 | 495 | 496 | 497 | 498 | 499 | 500 | 501 | 502 | 503 | 504 | 505 | 506 | 507 | 508 | 509 | 510 | 511 | 512 | 513 | 514 | 515 | 516 | 517 | 518 | 519 | 520 | 521 | 522 | 523 | 524 | 525 | 526 | 527 | 528 | 529 | 530 | 531 | 532 | 533 | 534 | 535 | 536 | 537 | 538 | 539 | 540 | 541 | 542 | 543 | 544 | 545 | 546 | 547 | 548 | 549 | 550 | 551 | 552 | 553 | 554 | 555 | 556 | 557 | 558 | 559 | 560 | 561 | 562 | 563 | 564 | 565 | 566 | 567 | 568 | 569 | 570 | 571 | 572 | 573 | 574 | 575 | 576 | 577 | 578 | 579 | 580 | 581 | 582 | 583 | 584 | 585 | 586 | 587 | 588 | 589 | 590 | 591 | 592 | 593 | 594 | 595 | 596 | 597 | 598 | 599 | 600 | 601 | 602 | 603 | 604 | 605 | 606 | 607 | 608 | 609 | 610 | 611 | 612 | 613 | 614 | 615 | 616 | 617 | 618 | 619 | 620 | 621 | 622 | 623 | 624 | 625 | 626 | 627 | 628 | 629 | 630 | 631 | 632 | 633 | 634 | 635 | 636 | 637 | 638 | 639 | -------------------------------------------------------------------------------- /fonts/HelveticaNeueLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebTorrent/openwebtorrent-www/505797adef1f1060883f22a81d58c97c46bdf5f2/fonts/HelveticaNeueLight.ttf -------------------------------------------------------------------------------- /fonts/HelveticaNeueLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebTorrent/openwebtorrent-www/505797adef1f1060883f22a81d58c97c46bdf5f2/fonts/HelveticaNeueLight.woff -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebTorrent/openwebtorrent-www/505797adef1f1060883f22a81d58c97c46bdf5f2/images/logo.png -------------------------------------------------------------------------------- /images/logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebTorrent/openwebtorrent-www/505797adef1f1060883f22a81d58c97c46bdf5f2/images/logo_white.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | OpenWebTorrent - An open webtorrent tracker project 6 | 7 | 8 | 9 | 10 | 11 | 15 | 16 |
17 |

OpenWebTorrent - An open webtorrent tracker project

18 |

19 | OpenWebTorrent is a webtorrent tracker free for anyone to use. You don't need to register, upload or index a torrent anywhere, all you have to do is to include the OpenWebTorrent tracker URL in your torrent. 20 |

21 | 22 |

How does it work?

23 |

When you create a torrent file the application will ask you for a tracker address, then simply type in OpenWebTorrent tracker URL:

24 |

25 | wss://tracker.openwebtorrent.com 26 |

27 | 28 |

Sponsors

29 | 30 |

31 | 32 |

33 | 34 |

Are there other open webtorrent trackers?

35 |

36 | Yes! We encourage you to use multiple trackers, this will increase your torrents accessibility. 37 | βTorrent and webtorrent.dev are another free, no strings attached, set of webtorrent trackers. 38 |

39 |

40 | wss://tracker.btorrent.xyz 41 |

42 | wss://tracker.webtorrent.dev 43 |

44 | 45 |

I already have .torrent files, how can I add your tracker?

46 | 47 |

48 | 49 | 58 | 59 |

60 | 61 |

You mentioned donations, how can I help?

62 |

63 | BitCoin: 17pFwpbP78Ew9UxB9UAKqoMY5F3BD26tpP 64 |

65 | 66 |

Something's broken, the tracker doesn't work, what should I do?

67 |

First off wait 6 hours, if it's something big we will already have it fixed by then, if we haven't, open an issue at our Github Repo, and report what IP you are trying to connect from, if you can ping the server, and if you know what a traceroute is, include one in the issue.

68 |
69 | 70 | 74 | 75 | 76 | 77 | 83 | 84 | 85 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | /* Fonts */ 2 | @font-face { 3 | font-family: 'HelveticaNeue'; 4 | src: url('./fonts/HelveticaNeue.eot'); 5 | src: local('HelveticaNeue'), 6 | url('./fonts/HelveticaNeue.woff') format('woff'), 7 | url('./fonts/HelveticaNeue.ttf') format('truetype'); 8 | } 9 | 10 | body { 11 | font-family: Georgia, "Times New Roman", Times, serif; 12 | color: #000; 13 | /*background-color: #E4E4E4;*/ 14 | font-size: 1.15em; 15 | padding: 0px; 16 | margin: 0px; 17 | background: #43cea2; 18 | background: -webkit-linear-gradient(to bottom, #43cea2 , #185a9d); 19 | background: linear-gradient(to bottom, #43cea2 , #185a9d); 20 | } 21 | 22 | .brand-text { 23 | color: #fff; 24 | font-family: "HelveticaNeue"; 25 | } 26 | 27 | #logo { 28 | width: 80%; 29 | margin: 0px auto; 30 | z-index: 1; 31 | } 32 | 33 | #logo img { 34 | display: inline-block; 35 | width: 50px; 36 | margin: 25px 0px; 37 | } 38 | 39 | #logo span { 40 | display: inline-block; 41 | vertical-align: top; 42 | margin: 0; 43 | line-height: 100px; 44 | font-size: 40px; 45 | margin-left: 20px; 46 | font-weight: normal; 47 | } 48 | 49 | #site { 50 | width: 80%; 51 | background-color: white; 52 | padding-left: 30px; 53 | padding-bottom: 20px; 54 | padding-right: 30px; 55 | padding-top: 10px; 56 | border-color: #b9bebc; 57 | border-width: 1px; 58 | border-style: solid; 59 | margin: 0px auto 0px auto; 60 | -moz-border-radius:8px; 61 | -webkit-border-radius:8px; 62 | box-sizing: border-box; 63 | } 64 | 65 | #footer { 66 | text-align: right; 67 | padding-top: 10px; 68 | width: 80%; 69 | margin: 0px auto 65px auto; 70 | } 71 | 72 | #footer img { 73 | width: 25px; 74 | display: inline-block; 75 | vertical-align: top; 76 | } 77 | 78 | #footer span { 79 | font-size: 25px; 80 | display: inline-block; 81 | vertical-align: top; 82 | line-height: 25px; 83 | margin-left: 10px; 84 | } 85 | 86 | h1 { 87 | font-size: 1.3em; 88 | } 89 | 90 | h2 { 91 | font-size: 1.2em; 92 | margin-bottom: 7px; 93 | margin-top: 35px; 94 | font-family: Helvetica, Arial, sans-serif; 95 | } 96 | 97 | p { 98 | word-break: break-word; 99 | } 100 | 101 | .boxed { 102 | padding-left: 15px; 103 | padding-bottom: 10px; 104 | padding-right: 10px; 105 | padding-top: 10px; 106 | font-size: 1.3em; 107 | border-color: #cdcac8; 108 | border-width: 1px; 109 | border-style: solid; 110 | color: black; 111 | background-color: #fefce9; 112 | -moz-border-radius:4px; 113 | -webkit-border-radius:4px; 114 | } 115 | 116 | .bigger { 117 | font-size: 1.4em; 118 | } 119 | 120 | li { 121 | margin-bottom:.5em; 122 | } 123 | 124 | /* For smaller devices */ 125 | @media (max-width: 768px) { 126 | 127 | #logo { 128 | padding: 0px 30px; 129 | } 130 | 131 | #logo img { 132 | width: 40px; 133 | margin: 30px 0px; 134 | } 135 | 136 | #logo span { 137 | font-size: 26px; 138 | margin-left: 10px; 139 | } 140 | 141 | #site { 142 | width: 100%; 143 | -moz-border-radius: 0px; 144 | -webkit-border-radius: 0px; 145 | } 146 | 147 | h1 { 148 | font-size: 1em; 149 | } 150 | 151 | h2 { 152 | font-size: 0.9em; 153 | } 154 | 155 | .bigger { 156 | font-size: 1.1em; 157 | } 158 | 159 | .boxed { 160 | font-size: 1em; 161 | } 162 | 163 | } 164 | 165 | /* Carbon */ 166 | p.center { 167 | text-align: center; 168 | } 169 | 170 | #carbonads { 171 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, 172 | Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif; 173 | } 174 | 175 | #carbonads { 176 | display: flex; 177 | max-width: 330px; 178 | background-color: hsl(0, 0%, 98%); 179 | box-shadow: 0 1px 4px 1px hsla(0, 0%, 0%, .1); 180 | } 181 | 182 | #carbonads a { 183 | color: inherit; 184 | text-decoration: none; 185 | } 186 | 187 | #carbonads a:hover { 188 | color: inherit; 189 | } 190 | 191 | #carbonads span { 192 | position: relative; 193 | display: block; 194 | overflow: hidden; 195 | } 196 | 197 | #carbonads .carbon-wrap { 198 | display: flex; 199 | } 200 | 201 | .carbon-img { 202 | display: block; 203 | margin: 0; 204 | line-height: 1; 205 | } 206 | 207 | .carbon-img img { 208 | display: block; 209 | } 210 | 211 | .carbon-text { 212 | font-size: 13px; 213 | padding: 10px; 214 | line-height: 1.5; 215 | text-align: left; 216 | } 217 | 218 | .carbon-poweredby { 219 | display: block; 220 | padding: 8px 10px; 221 | background: repeating-linear-gradient(-45deg, transparent, transparent 5px, hsla(0, 0%, 0%, .025) 5px, hsla(0, 0%, 0%, .025) 10px) hsla(203, 11%, 95%, .4); 222 | text-align: center; 223 | text-transform: uppercase; 224 | letter-spacing: .5px; 225 | font-weight: 600; 226 | font-size: 9px; 227 | line-height: 1; 228 | } 229 | --------------------------------------------------------------------------------