build with ko instead of nix
1 file changed, 7 insertions(+), 3 deletions(-)
changed files
M fly.toml → fly.toml
@@ -10,13 +10,17 @@ [build] image = "registry.fly.io/alanpearce-eu" [env] - PORT = "80" + PORT = "8080" + TLS_PORT = "8443" + LISTEN_ADDRESS = "::" TLS = "true" + ROOT = "/data" + PRODUCTION = "true" LOCAL_PATH = "/data/website" REMOTE_URL = "https://git.alanpearce.eu/website.git" [[services]] - internal_port = 80 + internal_port = 8080 [services.concurrency] type = "requests"@@ -26,7 +30,7 @@ [[services.ports]] port = 80 [[services]] - internal_port = 443 + internal_port = 8443 [[services.ports]] port = 443