diff options
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 |