maxlowry123

Untitled

Sep 9th, 2015
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. <?php
  2.  
  3. return array(
  4. /**
  5. * Mod Respository Location
  6. *
  7. * This is the location of your mod reposistory. INCLUDE a trailing slash!
  8. * This can be a URL or an absolute file location.
  9. *
  10. **/
  11. 'repo_location' => '/home/technicsolder/Install/TechnicSolder/mods/',
  12.  
  13. /**
  14. * Mirror Location
  15. *
  16. * This is where the launcher will be told to search for your files. If your
  17. * repo location is already a URL you can use the same location here.
  18. *
  19. **/
  20. 'mirror_url' => '173.44.54.143/',
  21.  
  22. /**
  23. * MD5 Hashing Timeout
  24. *
  25. * This is the amount of time Solder will wait before giving up trying to
  26. * calculate the MD5 checksum.
  27. *
  28. **/
  29. 'md5filetimeout' => 30,
  30.  
  31. /**
  32. * Amazon S3 Integration
  33. *
  34. * If you would like to use Amazon S3 for serving your pack resources set this to
  35. * true and fill in your AWS information below.
  36. */
  37. 'use_s3' => false,
  38.  
  39. /**
  40. * Amazon AWS Access Key
  41. */
  42. 'access_key' => '',
  43.  
  44. /**
  45. * Amazon AWS Secret Key
  46. */
  47. 'secret_key' => '',
  48.  
  49. /**
  50. * Amazon S3 Bucket
  51. *
  52. * This is the bucket that will be used to store your pack resources
  53. */
  54. 'bucket' => 'solder',
  55. );
  56.  
  57. ?>
Advertisement
Add Comment
Please, Sign In to add comment