diff options
author | Alan Pearce | 2024-06-25 18:02:18 +0200 |
---|---|---|
committer | Alan Pearce | 2024-06-25 18:09:28 +0200 |
commit | 398210c8ce4140de12720d3f16cc88284a146005 (patch) | |
tree | 2d8144b52870c97f8cd9b86738fd51b50cda0bf5 /fly.toml | |
parent | cd1125a213d742b5a89e8b60f0c7aafef13b8783 (diff) | |
download | website-398210c8ce4140de12720d3f16cc88284a146005.tar.lz website-398210c8ce4140de12720d3f16cc88284a146005.tar.zst website-398210c8ce4140de12720d3f16cc88284a146005.zip |
build with ko instead of nix
Diffstat (limited to 'fly.toml')
-rw-r--r-- | fly.toml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/fly.toml b/fly.toml index 3e68e45..1194b67 100644 --- a/fly.toml +++ b/fly.toml @@ -10,13 +10,17 @@ primary_region = "ams" 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 @@ primary_region = "ams" port = 80 [[services]] - internal_port = 443 + internal_port = 8443 [[services.ports]] port = 443 |