4 Commits

Author SHA1 Message Date
2010b4328d chore(release): v0.5.7 (#16)
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
chore(release): 0.5.7

Co-authored-by: cuddle-please <bot@cuddle.sh>
Reviewed-on: https://git.front.kjuulh.io/kjuulh/clank-node/pulls/16
2025-01-12 14:20:59 +01:00
e34b5f7b7b feat: add trigger
All checks were successful
continuous-integration/drone/push Build is passing
2025-01-12 14:20:19 +01:00
71963be181 chore(release): v0.5.6 (#15)
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
chore(release): 0.5.6

Co-authored-by: cuddle-please <bot@cuddle.sh>
Reviewed-on: https://git.front.kjuulh.io/kjuulh/clank-node/pulls/15
2025-01-12 14:11:36 +01:00
50eeb579ce feat: remove range from ip
All checks were successful
continuous-integration/drone/push Build is passing
2025-01-12 14:11:00 +01:00
3 changed files with 15 additions and 1 deletions

View File

@@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.5.7] - 2025-01-12
### Added
- add trigger
## [0.5.6] - 2025-01-12
### Added
- remove range from ip
## [0.5.5] - 2025-01-12
### Other

View File

@@ -1,4 +1,4 @@
@${name}-node ${replace(name, "_", "-")}.nodes.i.kjuulh.io
handle ${name}-node {
reverse-proxy ${ip}:80
reverse-proxy ${split("/", ip)[0]}:80
}

View File

@@ -41,6 +41,10 @@ resource "null_resource" "cloud_init_deb12_node" {
}
resource "null_resource" "node_caddy_template" {
triggers {
file_content = filemd5(local_file.node_caddy.filename)
}
connection {
type = "ssh"
user = "root"