Advertisement
Guest User

Untitled

a guest
May 13th, 2019
318
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.19 KB | None | 0 0
  1. # These are the default settings. Copy this file to `host_vars/myserver` then in that file set the values to match your setup.
  2.  
  3. ### REQUIRED ###
  4. # These values are REQUIRED for HomelabOS to work.
  5.  
  6. # Default user name to create as admin with services
  7. default_username: (A USER)
  8.  
  9. # Default password to go with the default user
  10. default_password: (PASSWORD)
  11.  
  12. # User name used to connect via ssh. Must have passwordless sudo.
  13. ansible_ssh_user: (A USER)
  14. homelab_ssh_user: (A USER)
  15.  
  16. # SSH accessible IP address
  17. ansible_host: 192.168.11.1 (Local, incase that matters)
  18. homelab_ip: 192.168.11.1 (Local, incase that matters)
  19.  
  20. # Timezone of the server
  21. common_timezone: 'Etc/UTC'
  22.  
  23. # Domain that will be used to point at the server
  24. # Must have a DNS A record of `*.yourserver.com` pointing at your server's IP.
  25. domain: homelab.local
  26.  
  27. # An email that is accessible outside of HomelabOS that you can receive system alerts and notices at.
  28. # Necessary for SSL / LetsEncrypt to work.
  29. admin_email: (Personal Email [valid])
  30.  
  31. # Features
  32.  
  33. # You can enable/disable different HomelabOS features here by changing False to True and vice versa.
  34.  
  35. enable_tinc: False
  36.  
  37. # Services
  38.  
  39. # You can enable/disable services individually by changing False to True and vice versa.
  40.  
  41. #Enabled
  42. enable_bitwarden: True
  43. enable_homeassistant: True
  44. enable_inventario: True
  45.  
  46. #Disabled
  47. enable_apple_health_influx: False
  48. enable_bulletnotes: False
  49. enable_darksky_influx: False
  50. enable_dasher: False
  51. enable_emby: False
  52. enable_firefly_iii: False
  53. enable_gitea: False
  54. enable_grafana: False
  55. enable_jackett: False
  56. enable_kibitzr: False
  57. enable_matomo: False
  58. enable_miniflux: False
  59. enable_minio: False
  60. enable_monicahq: False
  61. enable_nextcloud: False
  62. enable_nzbget: False
  63. enable_openvpn: False
  64. enable_organizr: False
  65. enable_paperless: False
  66. enable_pihole: False
  67. enable_plex: False
  68. enable_portainer: False
  69. enable_sonarr: False
  70. enable_radarr: False
  71. enable_restic: False
  72. enable_syncthing: False
  73. enable_thelounge: False
  74. enable_transmission: False
  75. enable_xfinityusageinfluxdb: False
  76.  
  77. ### END REQUIRED ###
  78.  
  79. ### OPTIONAL ### These valuse are OPTIONAL and enable extra HomelabOS functionality.
  80.  
  81. # Your DarkSky API Key. Get one at http://darksky.net/dev
  82. darksky_key:
  83.  
  84. # Your location
  85. latitude:
  86. longitude:
  87.  
  88. #Not using
  89. # VPN For Transmission to use for Downloads
  90. openvpn_provider: PIA
  91. openvpn_username: username
  92. openvpn_password: password
  93.  
  94. # NAS Config name: Docs: https://nickbusey.gitlab.io/HomelabOS/setup/installation/#nas-network-area-storage-configuration
  95. nas_path:
  96. nas_user:
  97. nas_pass:
  98. nas_workgroup:
  99.  
  100. # Restic S3 Backup Server Information name: Docs: https://nickbusey.gitlab.io/HomelabOS/setup/backups/
  101. s3_access_key:
  102. s3_secret_key:
  103. s3_backup_password:
  104. # Backup every day at 4:00 AM
  105. s3_backup_cron: 0 4 * * *
  106.  
  107. # Home Assitant API Key
  108. homeassistant_api_key:
  109.  
  110. # Apple Health Data Importer name: Docs: https://nickbusey.gitlab.io/HomelabOS/software/applehealth/
  111. apple_health_nextcloud_username: admin
  112.  
  113. # Xfinity Data Usage Settings
  114. xfinity_user:
  115. xfinity_password:
  116.  
  117. # Monica Settings
  118. monica_db_password:
  119.  
  120. # SMTP Settings
  121. smtp_host: localhost
  122. smtp_port: 25
  123. smtp_user:
  124. smtp_pass:
  125. smtp_from_email:
  126. smtp_from_name:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement