Guest User

Untitled

a guest
Jan 30th, 2025
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.01 KB | None | 0 0
  1. ## Here you edit/update your settings that will be used for your docker-compose
  2. ## This will only work if you follow exactly the path structure in the Guide !!!
  3. COMPOSE_PROJECT_NAME=trash-guides
  4.  
  5. ## Global Settings
  6. # <change "/volume1/docker/appdata" with the path your configs will be>
  7. DOCKERCONFDIR=/volume1/docker/appdata
  8. # <change "/volume1/data" with the path where your library + torrent/usenet downloads both are>
  9. DOCKERSTORAGEDIR=/volume1/data
  10. # <you must find out your PUID/PGID through SSH, run in terminal: id $user. If needed, change $user to the user you created.>
  11. PUID=1033
  12. PGID=100
  13. # <change to your timezone>
  14. TZ=Europe/Madrid
  15. # Dockerlogging and max size
  16. DOCKERLOGGING_MAXFILE=10
  17. DOCKERLOGGING_MAXSIZE=200k
  18.  
  19. ## VPN Settings (Only needed if you want to run a VPN Container)
  20.  
  21. # If you are getting a "Failed to open '/dev/net/tun'" error, run the commands below.
  22. # 1 - sudo curl -sL https://raw.githubusercontent.com/TRaSH-/Guides-Synology-Templates/main/script/tun.service -o "/etc/systemd/system/tun.service"
  23. # 2 - sudo systemctl enable /etc/systemd/system/tun.service
  24. # 3 - sudo systemctl start tun
  25. # Check if running with - sudo systemctl status tun
  26.  
  27. # <lan ipv4 network>/<cidr notation>
  28. LAN_NETWORK=192.168.2.0/24
  29.  
  30. ## qbittorrent
  31. # ENABLE VPN=<true|false>
  32. VPN_ENABLED=false
  33.  
  34. # ENABLE PRIVOXY=<true|false>
  35. QBITTORRENT_ENABLE_PRIVOXY=false
  36.  
  37. # qBittorrent (web ui)
  38. QBITTORRENT_WEBUI_PORT=7090
  39.  
  40. # Privoxy Port
  41. QBITTORRENT_PRIVOXY_PORT=8118
  42.  
  43. #Pick your vpn provider options are generic|pia|proton
  44. VPN_PROVIDER=generic
  45.  
  46. #Auto port forward rules. <true|false>. For PIA or Proton, set true. Torguard is false.
  47. PORT_FORWARD=false
  48.  
  49. ## Pullio - Auto update docker-compose the correct way.
  50. # Setup instructions https://trash-guides.info/Hardlinks/How-to-setup-for/Synology/#pullio-auto-update-docker-compose-the-correct-way
  51. # If you want your containers to be updated
  52. PULLIO_UPDATE=true
  53. # If you want a notification when there's a update, only discord webhook notifications is supported.
  54. # Adding no discord webhook will disable the notifications!!!
  55. # check for more info https://hotio.dev/pullio/ and how to add the webhook.
  56. PULLIO_NOTIFY=true
  57. PULLIO_DISCORD_WEBHOOK=
  58.  
  59. ## Notifiarr
  60. # Hostname is used to identify your host and can be set to anything you like.
  61. HOSTNAME=synodell
Add Comment
Please, Sign In to add comment