all repos — website @ 287cfec3d2479415bf3b7069702dbdb8c87b1826

My website

pass config file via fly/docker instead of embedding in image
Alan Pearce alan@alanpearce.eu
Sun, 26 May 2024 12:08:19 +0200
commit

287cfec3d2479415bf3b7069702dbdb8c87b1826

parent

547de640576c71bed54bc1ae3c9d9b224df9cc41

2 files changed, 4 insertions(+), 1 deletions(-)

jump to
M fly.tomlfly.toml
@@ -14,6 +14,10 @@ PORT = "80"   REDIRECT_OTHER_HOSTNAMES = "true"
   BASE_URL = "https://alanpearce.eu"
 
+  [[files]]
+    guest_path = "/config.toml"
+    local_path = "config.toml"
+
 [metrics]
   port = 9091
   path = "/metrics"
M nix/default.nixnix/default.nix
@@ -11,7 +11,6 @@ pkgs.dockerTools.${type} {       name = "registry.fly.io/alanpearce-eu";
       tag = fullSHA;
       contents = [
-        (pkgs.writeTextDir "config.toml" (builtins.readFile ./../config.toml))
         website
       ];
       config = {