ConfigLMM 0.4.0 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (227) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +34 -0
  3. data/CNAME +1 -0
  4. data/Examples/.lmm.state.yaml +159 -0
  5. data/Examples/ConfigLMM.mm.yaml +32 -0
  6. data/Examples/Implemented.mm.yaml +252 -4
  7. data/Examples/SmallBusiness.mm.yaml +492 -0
  8. data/Plugins/Apps/Answer/answer.lmm.rb +165 -0
  9. data/Plugins/Apps/Answer/answer@.service +40 -0
  10. data/Plugins/Apps/ArchiSteamFarm/ArchiSteamFarm.conf.erb +0 -3
  11. data/Plugins/Apps/ArchiSteamFarm/ArchiSteamFarm.lmm.rb +0 -1
  12. data/Plugins/Apps/Authentik/Authentik-ProxyOutpost.container +7 -1
  13. data/Plugins/Apps/Authentik/Authentik-Server.container +6 -1
  14. data/Plugins/Apps/Authentik/Authentik-Worker.container +6 -1
  15. data/Plugins/Apps/Authentik/Authentik.conf.erb +12 -7
  16. data/Plugins/Apps/Authentik/Authentik.lmm.rb +226 -61
  17. data/Plugins/Apps/BookStack/BookStack.conf.erb +0 -3
  18. data/Plugins/Apps/BookStack/BookStack.container +5 -0
  19. data/Plugins/Apps/BookStack/BookStack.lmm.rb +14 -3
  20. data/Plugins/Apps/Cassandra/Cassandra.lmm.rb +9 -19
  21. data/Plugins/Apps/ClickHouse/ClickHouse.container +28 -0
  22. data/Plugins/Apps/ClickHouse/ClickHouse.lmm.rb +113 -0
  23. data/Plugins/Apps/ClickHouse/Config/listen.yaml +2 -0
  24. data/Plugins/Apps/ClickHouse/Config/logger.yaml +8 -0
  25. data/Plugins/Apps/ClickHouse/Config/zookeepers.yaml +5 -0
  26. data/Plugins/Apps/ClickHouse/Connection.rb +96 -0
  27. data/Plugins/Apps/Discourse/Discourse-Sidekiq.container +5 -0
  28. data/Plugins/Apps/Discourse/Discourse.conf.erb +1 -4
  29. data/Plugins/Apps/Discourse/Discourse.container +4 -0
  30. data/Plugins/Apps/Discourse/Discourse.lmm.rb +116 -55
  31. data/Plugins/Apps/Dovecot/Dovecot.lmm.rb +74 -62
  32. data/Plugins/Apps/ERPNext/ERPNext-Frontend.container +6 -1
  33. data/Plugins/Apps/ERPNext/ERPNext-Queue.container +5 -0
  34. data/Plugins/Apps/ERPNext/ERPNext-Scheduler.container +5 -0
  35. data/Plugins/Apps/ERPNext/ERPNext-Websocket.container +6 -1
  36. data/Plugins/Apps/ERPNext/ERPNext.container +6 -1
  37. data/Plugins/Apps/ERPNext/ERPNext.lmm.rb +138 -127
  38. data/Plugins/Apps/GitLab/GitLab.container +6 -0
  39. data/Plugins/Apps/GitLab/GitLab.lmm.rb +43 -49
  40. data/Plugins/Apps/Homepage/Homepage.conf.erb +86 -0
  41. data/Plugins/Apps/Homepage/Homepage.container +19 -0
  42. data/Plugins/Apps/Homepage/Homepage.lmm.rb +54 -0
  43. data/Plugins/Apps/IPFS/IPFS.conf.erb +0 -3
  44. data/Plugins/Apps/IPFS/IPFS.lmm.rb +0 -1
  45. data/Plugins/Apps/InfluxDB/InfluxDB.conf.erb +0 -3
  46. data/Plugins/Apps/InfluxDB/InfluxDB.lmm.rb +0 -1
  47. data/Plugins/Apps/Jackett/Jackett.conf.erb +0 -3
  48. data/Plugins/Apps/Jackett/Jackett.lmm.rb +0 -1
  49. data/Plugins/Apps/Jellyfin/Jellyfin.conf.erb +0 -3
  50. data/Plugins/Apps/Jellyfin/Jellyfin.lmm.rb +0 -1
  51. data/Plugins/Apps/LetsEncrypt/LetsEncrypt.lmm.rb +49 -28
  52. data/Plugins/Apps/LibreTranslate/LibreTranslate.container +21 -0
  53. data/Plugins/Apps/LibreTranslate/LibreTranslate.lmm.rb +34 -0
  54. data/Plugins/Apps/Lobsters/Containerfile +81 -0
  55. data/Plugins/Apps/Lobsters/Lobsters-Tasks.container +26 -0
  56. data/Plugins/Apps/Lobsters/Lobsters.conf.erb +99 -0
  57. data/Plugins/Apps/Lobsters/Lobsters.container +27 -0
  58. data/Plugins/Apps/Lobsters/Lobsters.lmm.rb +196 -0
  59. data/Plugins/Apps/Lobsters/crontab +3 -0
  60. data/Plugins/Apps/Lobsters/database.yml +26 -0
  61. data/Plugins/Apps/Lobsters/entrypoint.sh +30 -0
  62. data/Plugins/Apps/Lobsters/generateCredentials.rb +19 -0
  63. data/Plugins/Apps/Lobsters/lobsters-cron.sh +25 -0
  64. data/Plugins/Apps/Lobsters/lobsters-daily.sh +23 -0
  65. data/Plugins/Apps/Lobsters/puma.rb +49 -0
  66. data/Plugins/Apps/MariaDB/Connection.rb +55 -0
  67. data/Plugins/Apps/MariaDB/MariaDB.lmm.rb +60 -53
  68. data/Plugins/Apps/Mastodon/Mastodon-Sidekiq.container +22 -0
  69. data/Plugins/Apps/Mastodon/Mastodon-Streaming.container +20 -0
  70. data/Plugins/Apps/Mastodon/Mastodon.conf.erb +34 -45
  71. data/Plugins/Apps/Mastodon/Mastodon.container +28 -0
  72. data/Plugins/Apps/Mastodon/Mastodon.lmm.rb +240 -5
  73. data/Plugins/Apps/Mastodon/configlmm.rake +30 -0
  74. data/Plugins/Apps/Mastodon/entrypoint.sh +16 -0
  75. data/Plugins/Apps/Matrix/Element.container +5 -0
  76. data/Plugins/Apps/Matrix/Matrix.conf.erb +2 -8
  77. data/Plugins/Apps/Matrix/Matrix.lmm.rb +100 -71
  78. data/Plugins/Apps/Matrix/Synapse.container +5 -0
  79. data/Plugins/Apps/Netdata/Netdata.conf.erb +0 -3
  80. data/Plugins/Apps/Netdata/Netdata.lmm.rb +0 -1
  81. data/Plugins/Apps/Nextcloud/Nextcloud.conf.erb +3 -4
  82. data/Plugins/Apps/Nextcloud/Nextcloud.lmm.rb +150 -68
  83. data/Plugins/Apps/Nextcloud/autoconfig.php +13 -0
  84. data/Plugins/Apps/Nextcloud/config.php +10 -1
  85. data/Plugins/Apps/Nextcloud/nextcloudcron.service +8 -0
  86. data/Plugins/Apps/Nextcloud/nextcloudcron.timer +10 -0
  87. data/Plugins/Apps/Nginx/Connection.rb +93 -0
  88. data/Plugins/Apps/Nginx/conf.d/configlmm.conf +50 -9
  89. data/Plugins/Apps/Nginx/conf.d/languages.conf +21 -0
  90. data/Plugins/Apps/Nginx/config-lmm/errors.conf +25 -20
  91. data/Plugins/Apps/Nginx/config-lmm/gateway-errors.conf +20 -0
  92. data/Plugins/Apps/Nginx/config-lmm/proxy.conf +1 -1
  93. data/Plugins/Apps/Nginx/main.conf.erb +7 -3
  94. data/Plugins/Apps/Nginx/nginx.conf +2 -2
  95. data/Plugins/Apps/Nginx/nginx.lmm.rb +99 -81
  96. data/Plugins/Apps/Nginx/proxy.conf.erb +11 -3
  97. data/Plugins/Apps/Odoo/Odoo.conf.erb +0 -3
  98. data/Plugins/Apps/Odoo/Odoo.container +5 -0
  99. data/Plugins/Apps/Odoo/Odoo.lmm.rb +4 -5
  100. data/Plugins/Apps/Ollama/Ollama.container +26 -0
  101. data/Plugins/Apps/Ollama/Ollama.lmm.rb +73 -0
  102. data/Plugins/Apps/OpenTelemetry/Config/config.yaml +704 -0
  103. data/Plugins/Apps/OpenTelemetry/OpenTelemetry.lmm.rb +154 -0
  104. data/Plugins/Apps/OpenVidu/Ingress.container +5 -0
  105. data/Plugins/Apps/OpenVidu/OpenVidu.conf.erb +0 -3
  106. data/Plugins/Apps/OpenVidu/OpenVidu.container +5 -0
  107. data/Plugins/Apps/OpenVidu/OpenVidu.lmm.rb +7 -3
  108. data/Plugins/Apps/OpenVidu/OpenViduCall.conf.erb +0 -3
  109. data/Plugins/Apps/OpenVidu/OpenViduCall.container +5 -0
  110. data/Plugins/Apps/PHP-FPM/Connection.rb +91 -0
  111. data/Plugins/Apps/PHP-FPM/PHP-FPM.lmm.rb +31 -4
  112. data/Plugins/Apps/Peppermint/Peppermint.conf.erb +2 -5
  113. data/Plugins/Apps/Peppermint/Peppermint.container +5 -0
  114. data/Plugins/Apps/Peppermint/Peppermint.lmm.rb +29 -33
  115. data/Plugins/Apps/Perplexica/Perplexica.container +25 -0
  116. data/Plugins/Apps/Perplexica/Perplexica.lmm.rb +92 -0
  117. data/Plugins/Apps/Perplexica/config.toml +26 -0
  118. data/Plugins/Apps/Podman/Connection.rb +24 -0
  119. data/Plugins/Apps/Podman/Podman.lmm.rb +80 -0
  120. data/Plugins/Apps/Podman/storage.conf +6 -0
  121. data/Plugins/Apps/Postfix/Postfix.lmm.rb +242 -164
  122. data/Plugins/Apps/PostgreSQL/Connection.rb +97 -0
  123. data/Plugins/Apps/PostgreSQL/PostgreSQL.lmm.rb +184 -148
  124. data/Plugins/Apps/Pterodactyl/Pterodactyl.conf.erb +0 -3
  125. data/Plugins/Apps/Pterodactyl/Pterodactyl.lmm.rb +0 -2
  126. data/Plugins/Apps/Pterodactyl/Wings.conf.erb +0 -3
  127. data/Plugins/Apps/RVM/RVM.lmm.rb +57 -0
  128. data/Plugins/Apps/Roundcube/Roundcube.conf.erb +0 -3
  129. data/Plugins/Apps/Roundcube/Roundcube.lmm.rb +15 -19
  130. data/Plugins/Apps/SSH/SSH.lmm.rb +9 -15
  131. data/Plugins/Apps/SearXNG/SearXNG.container +22 -0
  132. data/Plugins/Apps/SearXNG/SearXNG.lmm.rb +79 -0
  133. data/Plugins/Apps/SearXNG/limiter.toml +40 -0
  134. data/Plugins/Apps/SearXNG/settings.yml +2 -0
  135. data/Plugins/Apps/SigNoz/Config/alerts.yml +11 -0
  136. data/Plugins/Apps/SigNoz/Config/otel-collector-config.yaml +110 -0
  137. data/Plugins/Apps/SigNoz/Config/otel-collector-opamp-config.yaml +1 -0
  138. data/Plugins/Apps/SigNoz/Config/prometheus.yml +18 -0
  139. data/Plugins/Apps/SigNoz/SigNoz-Collector.container +23 -0
  140. data/Plugins/Apps/SigNoz/SigNoz-Migrator.container +17 -0
  141. data/Plugins/Apps/SigNoz/SigNoz.conf.erb +61 -0
  142. data/Plugins/Apps/SigNoz/SigNoz.container +26 -0
  143. data/Plugins/Apps/SigNoz/SigNoz.lmm.rb +319 -0
  144. data/Plugins/Apps/Solr/log4j2.xml +89 -0
  145. data/Plugins/Apps/Solr/solr.lmm.rb +82 -0
  146. data/Plugins/Apps/Sunshine/Sunshine.conf.erb +0 -3
  147. data/Plugins/Apps/Sunshine/Sunshine.lmm.rb +0 -1
  148. data/Plugins/Apps/Tunnel/tunnel.lmm.rb +33 -37
  149. data/Plugins/Apps/UVdesk/UVdesk.conf.erb +0 -3
  150. data/Plugins/Apps/Umami/Umami.container +19 -0
  151. data/Plugins/Apps/Umami/Umami.lmm.rb +108 -0
  152. data/Plugins/Apps/Valkey/Valkey.lmm.rb +54 -42
  153. data/Plugins/Apps/Vaultwarden/Vaultwarden.conf.erb +9 -6
  154. data/Plugins/Apps/Vaultwarden/Vaultwarden.container +7 -1
  155. data/Plugins/Apps/Vaultwarden/Vaultwarden.lmm.rb +64 -29
  156. data/Plugins/Apps/Wiki.js/Wiki.js.conf.erb +1 -4
  157. data/Plugins/Apps/Wiki.js/Wiki.js.container +5 -0
  158. data/Plugins/Apps/Wiki.js/Wiki.js.lmm.rb +31 -37
  159. data/Plugins/Apps/YaCy/YaCy.conf.erb +93 -0
  160. data/Plugins/Apps/YaCy/YaCy.container +21 -0
  161. data/Plugins/Apps/YaCy/YaCy.lmm.rb +160 -0
  162. data/Plugins/Apps/ZooKeeper/ZooKeeper.container +24 -0
  163. data/Plugins/Apps/ZooKeeper/ZooKeeper.lmm.rb +68 -0
  164. data/Plugins/Apps/bitmagnet/bitmagnet.conf.erb +0 -3
  165. data/Plugins/Apps/bitmagnet/bitmagnet.lmm.rb +0 -1
  166. data/Plugins/Apps/gollum/gollum.conf.erb +2 -4
  167. data/Plugins/Apps/gollum/gollum.container +6 -0
  168. data/Plugins/Apps/gollum/gollum.lmm.rb +51 -50
  169. data/Plugins/Apps/llama.cpp/llama.cpp.container +28 -0
  170. data/Plugins/Apps/llama.cpp/llama.cpp.lmm.rb +90 -0
  171. data/Plugins/Apps/vLLM/vLLM.container +32 -0
  172. data/Plugins/Apps/vLLM/vLLM.lmm.rb +89 -0
  173. data/Plugins/OS/General/Utils.lmm.rb +26 -0
  174. data/Plugins/OS/Linux/Connection.rb +472 -0
  175. data/Plugins/OS/Linux/Debian/preseed.cfg.erb +25 -6
  176. data/Plugins/OS/Linux/Flavours.yaml +13 -0
  177. data/Plugins/OS/Linux/Grub/grub.cfg +10 -0
  178. data/Plugins/OS/Linux/HTTP.rb +32 -0
  179. data/Plugins/OS/Linux/Linux.lmm.rb +533 -187
  180. data/Plugins/OS/Linux/Packages.yaml +20 -1
  181. data/Plugins/OS/Linux/Services.yaml +8 -0
  182. data/Plugins/OS/Linux/Shell.rb +70 -0
  183. data/Plugins/OS/Linux/Syslinux/default +8 -0
  184. data/Plugins/OS/Linux/WireGuard/WireGuard.lmm.rb +83 -59
  185. data/Plugins/OS/Linux/WireGuard/wg0.conf.erb +3 -0
  186. data/Plugins/OS/Linux/openSUSE/autoinst.xml.erb +29 -3
  187. data/Plugins/OS/Linux/systemd/systemd.lmm.rb +13 -11
  188. data/Plugins/OS/Routers/Aruba/ArubaInstant.lmm.rb +6 -5
  189. data/Plugins/Platforms/GitHub.lmm.rb +73 -28
  190. data/Plugins/Platforms/GoDaddy/GoDaddy.lmm.rb +9 -6
  191. data/Plugins/Platforms/Proxmox/Proxmox.lmm.rb +402 -0
  192. data/Plugins/Platforms/Proxmox/XTerm.rb +321 -0
  193. data/Plugins/Platforms/libvirt/libvirt.lmm.rb +38 -13
  194. data/Plugins/Platforms/porkbun.lmm.rb +12 -2
  195. data/Plugins/Platforms/porkbun_spec.rb +2 -2
  196. data/Plugins/Services/DNS/AmberBit.lmm.rb +1 -1
  197. data/Plugins/Services/DNS/ArubaItDNS.lmm.rb +1 -1
  198. data/Plugins/Services/DNS/NICLV.lmm.rb +1 -1
  199. data/Plugins/Services/DNS/PowerDNS.lmm.rb +70 -68
  200. data/Plugins/Services/DNS/tonic.lmm.rb +22 -12
  201. data/lib/ConfigLMM/Framework/plugins/dns.rb +4 -3
  202. data/lib/ConfigLMM/Framework/plugins/linuxApp.rb +145 -184
  203. data/lib/ConfigLMM/Framework/plugins/nginxApp.rb +34 -17
  204. data/lib/ConfigLMM/Framework/plugins/plugin.rb +53 -181
  205. data/lib/ConfigLMM/Framework/plugins/store.rb +4 -4
  206. data/lib/ConfigLMM/Framework/variables.rb +75 -0
  207. data/lib/ConfigLMM/Framework.rb +1 -0
  208. data/lib/ConfigLMM/cli.rb +12 -6
  209. data/lib/ConfigLMM/commands/configsCommand.rb +37 -6
  210. data/lib/ConfigLMM/commands/diff.rb +33 -9
  211. data/lib/ConfigLMM/context.rb +22 -3
  212. data/lib/ConfigLMM/io/configList.rb +82 -6
  213. data/lib/ConfigLMM/io/connection.rb +143 -0
  214. data/lib/ConfigLMM/io/dhcp.rb +330 -0
  215. data/lib/ConfigLMM/io/http.rb +78 -0
  216. data/lib/ConfigLMM/io/local.rb +207 -0
  217. data/lib/ConfigLMM/io/pxe.rb +92 -0
  218. data/lib/ConfigLMM/io/ssh.rb +156 -0
  219. data/lib/ConfigLMM/io/tftp.rb +105 -0
  220. data/lib/ConfigLMM/io.rb +2 -0
  221. data/lib/ConfigLMM/secrets/envStore.rb +39 -0
  222. data/lib/ConfigLMM/secrets/fileStore.rb +43 -0
  223. data/lib/ConfigLMM/state.rb +2 -1
  224. data/lib/ConfigLMM/version.rb +2 -1
  225. data/lib/ConfigLMM.rb +1 -0
  226. data/{Examples → scripts}/configlmmAuth.sh +7 -5
  227. metadata +205 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e75cd300255c00348e10301216861bbc10e1fd1473e35a19c0b879f6c90f433c
4
- data.tar.gz: b75628e73fa064c403e4dc51cb69997c1e5d8215536df9f961ce8861bf405757
3
+ metadata.gz: ce5460156938986ec0b57de13935a12a6eacd0958edfcdb49d59a8eb03d50db3
4
+ data.tar.gz: c4574abd1a94146c6ae7d9f6dee05f41462a248304e71c71572716f4cb69f52c
5
5
  SHA512:
6
- metadata.gz: f357dba4ec543ed5b7d1ac66e678df83bb5bcf0c22793b80f70a30e6c22648837ca259d429ccff099fb77fb640c87ecafcf679b052d34ff45f1764ca650eedd5
7
- data.tar.gz: 954e1f8b9720c7ffaa4f6173fe28ead5e1dd706d488b950172651273016422df300a2fd81a70652aaeb506f84bfa755902c6c198849821d72decf551779337e2
6
+ metadata.gz: f856962a1c17f1574bb9673e098e79104427ee1d99ff29750cfe23d8768bc78b9803ecda56a22f8e664377bc6da0b3e7d5a771e57d21969f3a10b3fd77ccecc7
7
+ data.tar.gz: 4233f77013df80754a0e064cdfcc5ae9a5afcfe7120920da14ec6e51e5f8fdb2c0d695945f2fb6f54c4d82c959057c5106042ccab5659c49aced279b47a0d929
data/CHANGELOG.md CHANGED
@@ -1,3 +1,37 @@
1
+
2
+ ## [0.5.0] - 2025-04-25
3
+
4
+ Implement:
5
+ - VM and LXC deployment over Proxmox
6
+ - `proxmox+xterm` connection/tunnel
7
+ - Secrets EnvStore and FileStore
8
+ - Support for `_INCLUDE_` and `_VARIABLES_`
9
+ - PXE TFTP (BIOS and UEFI) and PXE HTTP (BIOS and UEFI)
10
+ - Umami - https://umami.is/
11
+ - ZooKeeper - https://zookeeper.apache.org/
12
+ - ClickHouse - https://clickhouse.com/
13
+ - SigNoz - https://signoz.io/
14
+ - OpenTelemetry Collector - https://opentelemetry.io/
15
+ - LibreTranslate - https://libretranslate.com/
16
+ - Homepage - https://gethomepage.dev/
17
+ - Mastodon - https://github.com/mastodon/mastodon
18
+ - Apache Answer - https://answer.apache.org/
19
+ - Apache Solr - https://solr.apache.org/
20
+ - Lobsters - https://github.com/lobsters/lobsters
21
+ - SearXNG - https://github.com/searxng/searxng
22
+ - Ollama - https://ollama.com/
23
+ - Perplexica - https://github.com/ItzCrazyKns/Perplexica/
24
+ - llama.cpp - https://github.com/ggml-org/llama.cpp
25
+ - vLLM - https://github.com/vllm-project/vllm
26
+ - YaCy - https://yacy.net/
27
+ - RVM - https://rvm.io/
28
+ - SSH Config for Users
29
+ - command debug logging
30
+ - Filesystem
31
+
32
+ Other improvements:
33
+ - Way too many to list, see commit log
34
+
1
35
  ## [0.4.0] - 2024-10-04
2
36
 
3
37
  Implement:
data/CNAME ADDED
@@ -0,0 +1 @@
1
+ configlm.moe
@@ -0,0 +1,159 @@
1
+ ---
2
+ CONFIGLMMPORKBUN:
3
+ :Type: PorkbunDNS
4
+ DNS:
5
+ configlm.moe:
6
+ :_records_:
7
+ - :name: configlm.moe
8
+ :content: 185.199.108.153
9
+ :type: A
10
+ :ttl: '600'
11
+ :prio: '0'
12
+ :domain: configlm.moe
13
+ :id: '412581997'
14
+ - :name: configlm.moe
15
+ :content: 185.199.109.153
16
+ :type: A
17
+ :ttl: '600'
18
+ :prio: '0'
19
+ :domain: configlm.moe
20
+ :id: '412581999'
21
+ - :name: configlm.moe
22
+ :content: 185.199.110.153
23
+ :type: A
24
+ :ttl: '600'
25
+ :prio: '0'
26
+ :domain: configlm.moe
27
+ :id: '412582003'
28
+ - :name: configlm.moe
29
+ :content: 185.199.111.153
30
+ :type: A
31
+ :ttl: '600'
32
+ :prio: '0'
33
+ :domain: configlm.moe
34
+ :id: '412582004'
35
+ - :name: configlm.moe
36
+ :content: 2606:50c0:8000::153
37
+ :type: AAAA
38
+ :ttl: '600'
39
+ :prio: '0'
40
+ :domain: configlm.moe
41
+ :id: '412582006'
42
+ - :name: configlm.moe
43
+ :content: 2606:50c0:8001::153
44
+ :type: AAAA
45
+ :ttl: '600'
46
+ :prio: '0'
47
+ :domain: configlm.moe
48
+ :id: '412582008'
49
+ - :name: configlm.moe
50
+ :content: 2606:50c0:8002::153
51
+ :type: AAAA
52
+ :ttl: '600'
53
+ :prio: '0'
54
+ :domain: configlm.moe
55
+ :id: '412582016'
56
+ - :name: configlm.moe
57
+ :content: 2606:50c0:8003::153
58
+ :type: AAAA
59
+ :ttl: '600'
60
+ :prio: '0'
61
+ :domain: configlm.moe
62
+ :id: '412582023'
63
+ - :name: www.configlm.moe
64
+ :content: configlm.moe
65
+ :type: CNAME
66
+ :ttl: '600'
67
+ :prio: '0'
68
+ :domain: configlm.moe
69
+ :id: '468453732'
70
+ - :name: configlm.moe
71
+ :content: curitiba.porkbun.com
72
+ :type: NS
73
+ :ttl: '86400'
74
+ :prio:
75
+ :domain: configlm.moe
76
+ :id: '394383879'
77
+ - :name: configlm.moe
78
+ :content: fortaleza.porkbun.com
79
+ :type: NS
80
+ :ttl: '86400'
81
+ :prio:
82
+ :domain: configlm.moe
83
+ :id: '394383877'
84
+ - :name: configlm.moe
85
+ :content: maceio.porkbun.com
86
+ :type: NS
87
+ :ttl: '86400'
88
+ :prio:
89
+ :domain: configlm.moe
90
+ :id: '394383875'
91
+ - :name: configlm.moe
92
+ :content: salvador.porkbun.com
93
+ :type: NS
94
+ :ttl: '86400'
95
+ :prio:
96
+ :domain: configlm.moe
97
+ :id: '394383876'
98
+ - :name: _github-pages-challenge-configlmm.configlm.moe
99
+ :content: 8af4ef1ab3c2cd74a53855da39251b
100
+ :type: TXT
101
+ :ttl: '600'
102
+ :prio: '0'
103
+ :domain: configlm.moe
104
+ :id: '468448931'
105
+ Config:
106
+ DNS:
107
+ ConfigLM.Moe:
108
+ "@":
109
+ - A=185.199.108.153
110
+ - A=185.199.109.153
111
+ - A=185.199.110.153
112
+ - A=185.199.111.153
113
+ - AAAA=2606:50c0:8000::153
114
+ - AAAA=2606:50c0:8001::153
115
+ - AAAA=2606:50c0:8002::153
116
+ - AAAA=2606:50c0:8003::153
117
+ www: CNAME=ConfigLM.Moe
118
+ _github-pages-challenge-ConfigLMM: TXT=${SECRET:ConfigLMMGitHub:ConfigLMM_ConfigLM.Moe}
119
+ ID: ConfigLMMPorkbun
120
+ Location: "@me"
121
+ Name: ConfigLMMPorkbun
122
+ SecretId: CONFIGLMMPORKBUN
123
+ Type: :PorkbunDNS
124
+ Status: DEPLOYED
125
+ CONFIGLMMGITHUB:
126
+ :Type: GitHub
127
+ Config:
128
+ ID: ConfigLMMGitHub
129
+ Location: "@me"
130
+ Name: ConfigLMMGitHub
131
+ Organizations:
132
+ ConfigLMM:
133
+ Description: ConfigLMM - Large Configuration Management Manager
134
+ URL: https://ConfigLM.Moe
135
+ Domains:
136
+ - ConfigLM.Moe
137
+ Repositories:
138
+ ConfigLMM:
139
+ Description: Manage configuration for your applications/systems/services/servers
140
+ Pages:
141
+ Branch: master
142
+ Domain: ConfigLM.Moe
143
+ SecretId: CONFIGLMMGITHUB
144
+ Type: :GitHub
145
+ Status: DEPLOYED
146
+ Organizations:
147
+ ConfigLMM:
148
+ login: ConfigLMM
149
+ id: 167044080
150
+ node_id: O_kgDOCfTj8A
151
+ url: https://api.github.com/orgs/ConfigLMM
152
+ repos_url: https://api.github.com/orgs/ConfigLMM/repos
153
+ events_url: https://api.github.com/orgs/ConfigLMM/events
154
+ hooks_url: https://api.github.com/orgs/ConfigLMM/hooks
155
+ issues_url: https://api.github.com/orgs/ConfigLMM/issues
156
+ members_url: https://api.github.com/orgs/ConfigLMM/members{/member}
157
+ public_members_url: https://api.github.com/orgs/ConfigLMM/public_members{/member}
158
+ avatar_url: https://avatars.githubusercontent.com/u/167044080?v=4
159
+ description: ConfigLMM - Large Configuration Management Manager
@@ -0,0 +1,32 @@
1
+
2
+ ConfigLMMPorkbun:
3
+ Type: PorkbunDNS
4
+ DNS:
5
+ ConfigLM.Moe:
6
+ '@':
7
+ - A=185.199.108.153
8
+ - A=185.199.109.153
9
+ - A=185.199.110.153
10
+ - A=185.199.111.153
11
+ - AAAA=2606:50c0:8000::153
12
+ - AAAA=2606:50c0:8001::153
13
+ - AAAA=2606:50c0:8002::153
14
+ - AAAA=2606:50c0:8003::153
15
+ www: CNAME=ConfigLM.Moe
16
+ _github-pages-challenge-ConfigLMM: TXT=${SECRET:ConfigLMMGitHub:ConfigLMM_ConfigLM.Moe}
17
+
18
+ ConfigLMMGitHub:
19
+ Type: GitHub
20
+ Organizations:
21
+ ConfigLMM:
22
+ Description: ConfigLMM - Large Configuration Management Manager
23
+ URL: https://ConfigLM.Moe
24
+ Domains:
25
+ - ConfigLM.Moe
26
+ Repositories:
27
+ ConfigLMM:
28
+ Description: Manage configuration for your applications/systems/services/servers
29
+ Website: https://ConfigLM.Moe
30
+ Pages:
31
+ Branch: master
32
+ Domain: ConfigLM.Moe
@@ -41,6 +41,21 @@ GoDaddy:
41
41
  - AAAA=2606:2800:21f:cb07:6820:80da:af6b:8b2c
42
42
  - AAAA=2606:2800:21f:cb07:6820:80da:af6b:0153
43
43
 
44
+ # https://letsencrypt.org/
45
+ LetsEncrypt:
46
+ Type: LetsEncrypt
47
+ EMail: DNS@Example.org
48
+ Domain: '*.Example.org'
49
+ DNS:
50
+ IP: 127.0.0.1
51
+ SecretId: PowerDNS.TSIG_ConfigLMM_KEY
52
+ Propagation: 5
53
+ Certificates:
54
+ Example: '*.Example.com'
55
+ Hooks:
56
+ - nginx
57
+ - postfix
58
+
44
59
  Linux:
45
60
  Type: Linux
46
61
  Location: qemu:///session
@@ -61,7 +76,8 @@ Linux:
61
76
  Users:
62
77
  root:
63
78
  Shell: fish
64
- SSHKey: yes
79
+ SSH:
80
+ Key: yes
65
81
  AuthorizedKeys:
66
82
  - ~/.ssh/id_ed25519.pub
67
83
  SSH:
@@ -91,6 +107,22 @@ Systemd:
91
107
  Location: ssh://example.org/
92
108
  UserCgroups: yes # Need for Podman
93
109
 
110
+ # https://answer.apache.org/
111
+ Answer:
112
+ Type: Answer
113
+ Domain: example.org
114
+ Plugins:
115
+ - github.com/apache/answer-plugins/connector-basic
116
+ - github.com/apache/answer-plugins/editor-chart
117
+ - github.com/apache/answer-plugins/editor-formula
118
+ Site:
119
+ Name: Answer
120
+ ContactEMail: answer@example.org
121
+ Language: en-US
122
+ Admin:
123
+ Username: admin
124
+ EMail: admin@example.org
125
+
94
126
  # https://www.arubanetworks.com/
95
127
  ArubaInstant:
96
128
  Type: ArubaInstant
@@ -107,6 +139,14 @@ Authentik:
107
139
  Type: Authentik
108
140
  Location: ssh://example.org/
109
141
  Domain: auth.example.org
142
+ Admin:
143
+ EMail: Admin@Example.org
144
+ SMTP:
145
+ SecretId: Postfix
146
+ Host: Example.org
147
+ Port: 465
148
+ Username: EMail@Example.org
149
+ From: Auth <EMail@Example.org>
110
150
 
111
151
  # https://bitmagnet.io/
112
152
  Bitmagnet:
@@ -119,10 +159,43 @@ Cassandra:
119
159
  Location: ssh://example.org/
120
160
  ClusterName: Cluster
121
161
 
162
+ # https://clickhouse.com/
163
+ ClickHouse:
164
+ Type: ClickHouse
165
+
166
+ Discourse:
167
+ Type: Discourse
168
+ Domain: Discourse.example.org
169
+ ValkeySecretId: Valkey
170
+ Admin:
171
+ Username: Admin
172
+ EMail: Admin@example.org
173
+ FirstName: Admin
174
+ LastName: Admin
175
+ SMTP:
176
+ SecretId: Postfix
177
+ Host: example.org
178
+ Port: 465
179
+ Username: EMail@Example.org
180
+ Plugins:
181
+ - https://github.com/discourse/discourse-openid-connect
182
+
122
183
  # https://www.dovecot.org/
123
184
  Dovecot:
124
185
  Type: Dovecot
125
186
  Location: ssh://example.org/
187
+ Protocols:
188
+ - imap
189
+ - lmtp
190
+
191
+ # https://frappe.io/erpnext
192
+ ERPNext:
193
+ Type: ERPNext
194
+ Proxy: no
195
+ Valkey: localhost:6379
196
+ ValkeySecretId: Valkey
197
+ Database:
198
+ HostName: localhost
126
199
 
127
200
  # https://about.gitlab.com/
128
201
  GitLab:
@@ -130,15 +203,16 @@ GitLab:
130
203
  Location: ssh://example.org/
131
204
  Domain: git.example.org
132
205
  SMTP:
133
- HostName: email.example.org
206
+ Host: email.example.org
134
207
  Port: 465
135
- User: git@example.org
208
+ Username: git@example.org
136
209
  TLS: yes
137
210
 
138
211
  # https://github.com/gollum/gollum
139
212
  Gollum:
140
213
  Type: Gollum
141
214
  Domain: gollum.example.org
215
+ Config: Gollum.rb
142
216
 
143
217
  # https://grafana.com/
144
218
  Grafana:
@@ -147,6 +221,10 @@ Grafana:
147
221
  Proxy: unix:/run/grafana/grafana.sock
148
222
  Private: yes
149
223
 
224
+ # https://gethomepage.dev/
225
+ Homepage:
226
+ Type: Homepage
227
+
150
228
  # https://ipfs.tech/
151
229
  IPFS:
152
230
  Type: IPFS
@@ -167,15 +245,65 @@ Jellyfin:
167
245
  Type: Jellyfin
168
246
  Domain: jellyfin.example.org
169
247
 
248
+ # https://github.com/ggml-org/llama.cpp
249
+ Llamacpp:
250
+ Type: llama.cpp
251
+ Model: google/gemma-3-4b-it-qat-q4_0-gguf
252
+
253
+ # https://libretranslate.com/
254
+ LibreTranslate:
255
+ Type: LibreTranslate
256
+
257
+ # https://github.com/lobsters/lobsters
258
+ Lobsters:
259
+ Type: Lobsters
260
+ Domain: example.org
261
+ Admin:
262
+ Username: admin
263
+ EMail: admin@example.org
264
+ SMTP:
265
+ SecretId: Secret
266
+ Host: mail@example.org
267
+ Port: 465
268
+ Username: lobsters
269
+
270
+ # https://mariadb.org/
271
+ MariaDB:
272
+ Type: MariaDB
273
+ Listen: 192.168.1.2
274
+
170
275
  # https://github.com/mastodon/mastodon
171
276
  Mastodon:
172
277
  Type: Mastodon
173
278
  Domain: mastodon.example.org
279
+ Valkey:
280
+ SecretId: valkey
281
+ Host: valkey
282
+ SMTP:
283
+ SecretId: Secret
284
+ Host: mail@example.org
285
+ Port: 465
286
+ Username: mastodon
287
+ From: Mastodon <mastodon@example.org>
288
+ Admin:
289
+ Username: admin
290
+ EMail: admin@example.org
174
291
 
175
292
  # https://matrix.org/
176
293
  Matrix:
177
294
  Type: Matrix
178
295
  Domain: matrix.example.org
296
+ SynapseDomain: Synapse.example.org
297
+ ServerName: example.org
298
+ SMTP:
299
+ SecretId: Postfix
300
+ Host: example.org
301
+ Port: 465
302
+ Username: Matrix@example.org
303
+ From: Matrix <Matrix@example.org>
304
+ OIDC:
305
+ SecretId: Authentik
306
+ Issuer: https://auth.example.org/application/o/matrix/
179
307
 
180
308
  # https://www.netdata.cloud/
181
309
  Netdata:
@@ -189,6 +317,11 @@ Nextcloud:
189
317
  Database:
190
318
  Type: pgsql
191
319
  HostName: localhost
320
+ Admin:
321
+ Name: Admin
322
+ Valkey:
323
+ SecretId: Valkey
324
+ Host: localhost
192
325
 
193
326
  # https://www.odoo.com/
194
327
  Odoo:
@@ -197,12 +330,38 @@ Odoo:
197
330
  Database:
198
331
  HostName: db.example.org
199
332
 
333
+ # https://ollama.com/
334
+ Ollama:
335
+ Type: Ollama
336
+
337
+ # https://opentelemetry.io/
338
+ OtelCollector:
339
+ Type: OtelCollector
340
+ Services:
341
+ postgresql:
342
+ Exporters:
343
+ otlp:
344
+ endpoint: 192.168.1.3:4317
345
+ tls:
346
+ insecure: true
347
+
200
348
  # https://peppermint.sh/
201
349
  Peppermint:
202
350
  Type: Peppermint
203
351
  Location: ssh://example.org/
204
352
  Domain: Peppermint.example.org
205
353
 
354
+ # https://github.com/ItzCrazyKns/Perplexica/
355
+ Perplexica:
356
+ Type: Perplexica
357
+ Ollama:
358
+ URL: http://localhost:11434/
359
+
360
+ PHPFPM:
361
+ Type: PHPFPM
362
+ Settings:
363
+ memory_limit: 1G
364
+
206
365
  # https://www.postfix.org/
207
366
  Postfix:
208
367
  Type: Postfix
@@ -213,24 +372,42 @@ Postfix:
213
372
  ForwardDovecot: yes
214
373
  Settings:
215
374
  inet_interfaces: $myhostname, localhost
375
+ Accounts:
376
+ Example@Example.org:
216
377
 
217
378
  PostgreSQL:
218
379
  Type: PostgreSQL
219
380
  Location: ssh://example.org/
220
381
  ListenAll: yes
382
+ Replicate:
383
+ Connection: host=192.168.1.1 user=replication password=${SECRET:POSTGRESQL:REPLICATION_PASSWORD}
384
+ Slot: standby
385
+ AllowReplication:
386
+ - 192.168.1.1/24
221
387
  Users:
222
388
  replication:
223
389
  Replication: yes
224
390
  Password: ${ENV:POSTGRES_REPLICATION_PASSWORD}
225
391
  Subscriptions:
226
392
  db:
227
- Connection: user=replication dbname=db password=${ENV:POSTGRES_REPLICATION_PASSWORD}
393
+ Connection: user=replication dbname=db password=${GENERATE:POSTGRESQL:REPLICATION_PASSWORD}
394
+ Settings:
395
+ wal_level: logical # for Logical Replication
228
396
 
229
397
  # https://pterodactyl.io/
230
398
  Pterodactyl:
231
399
  Type: Pterodactyl
232
400
  Domain: pterodactyl.example.org
233
401
 
402
+ # https://rvm.io/
403
+ RVM:
404
+ Type: RVM
405
+ User: rvm
406
+ Packages:
407
+ - git
408
+ Gems:
409
+ - webrick
410
+
234
411
  # https://pterodactyl.io/
235
412
  Wings:
236
413
  Type: Wings
@@ -250,11 +427,41 @@ Scrutiny:
250
427
  Proxy: http://127.0.0.1:7080
251
428
  Private: yes
252
429
 
430
+ # https://github.com/searxng/searxng
431
+ SearXNG:
432
+ Type: SearXNG
433
+ Valkey:
434
+ Host: valkey
435
+ SecretId: secret
436
+ Settings:
437
+ search:
438
+ formats:
439
+ - html
440
+ - json
441
+
442
+ # https://signoz.io/
443
+ SigNoz:
444
+ Type: SigNoz
445
+
446
+ # https://signoz.io/
447
+ SigNozCollector:
448
+ Type: SigNozCollector
449
+ Listen: 0.0.0.0
450
+ Environment: production
451
+
452
+ # https://solr.apache.org/
453
+ Solr:
454
+ Type: Solr
455
+
253
456
  # https://app.lizardbyte.dev/Sunshine/
254
457
  Sunshine:
255
458
  Type: Sunshine
256
459
  Domain: sunshine.example.org
257
460
 
461
+ Systemd:
462
+ Type: systemd
463
+ UserCgroups: yes
464
+
258
465
  # https://valkey.io/ (Redis fork)
259
466
  Valkey:
260
467
  Type: Valkey
@@ -264,6 +471,21 @@ Valkey:
264
471
  Vaultwarden:
265
472
  Type: Vaultwarden
266
473
  Domain: vaultwarden.example.org
474
+ SMTP:
475
+ SecretId: Postfix
476
+ Host: example.org
477
+ Port: 465
478
+ Username: vaultwarden@example.org
479
+ FromAddress: vaultwarden@example.org
480
+
481
+ # https://github.com/vllm-project/vllm
482
+ VLLM:
483
+ Type: vLLM
484
+
485
+ # https://js.wiki/
486
+ Wiki.js:
487
+ Type: WikiJS
488
+ Domain: wiki.example.org
267
489
 
268
490
  # https://www.wireguard.com/
269
491
  WireGuard:
@@ -273,3 +495,29 @@ WireGuard:
273
495
  Peers:
274
496
  example:
275
497
  Endpoint: example.example.org
498
+ SecretId: WireGuard
499
+ AllowedIPs: 172.20.0.2/32
500
+ PersistentKeepalive: 25
501
+
502
+ # https://yacy.net/
503
+ YaCy:
504
+ Type: YaCy
505
+ Admin:
506
+ Username: admin
507
+ PeerName: YaCy
508
+ SeedURL: https://YaCy.example.org/seed.txt
509
+ Settings:
510
+ staticIP: YaCy.example.org
511
+ publicPort: 443
512
+ Profile:
513
+ name: YaCy
514
+ nickname: YaCy
515
+
516
+ # https://umami.is/
517
+ Umami:
518
+ Type: Umami
519
+ Domain: Umami.example.org
520
+
521
+ # https://zookeeper.apache.org/
522
+ ZooKeeper:
523
+ Type: ZooKeeper