Referring to App Configuration (fly.toml) · Fly Docs it seems there does exist a http_service
attribute, unless I’m misunderstanding something.
What am I doing wrong? Thanks.
winston@stargate ~/p/sillypaste/service $ fly version
flyctl v0.0.454 linux/amd64 Commit: 8c59e3dc BuildDate: 2023-02-07T16:21:15Z
winston@stargate ~/p/sillypaste/service $ cat fly.toml
app = "sillypaste"
[build]
dockerfile = "Dockerfile"
[env]
DJANGO_ALLOWED_HOSTS = "sillypaste.winny.tech,sillypaste.fly.dev"
# [[services]]
# internal_port = 8080
# protocol = "tcp"
[http_service]
internal_port = 8080
force_https = true
[http_service.concurrency]
type = "requests"
soft_limit = 200
hard_limit = 250