My personal site cherry.computer
htmx tailwind axum askama

Add fly.io configuration file

+41
+41
fly.toml
···
··· 1 + # fly.toml file generated for myivo on 2022-05-23T09:56:13+01:00 2 + 3 + app = "myivo" 4 + 5 + kill_signal = "SIGINT" 6 + kill_timeout = 5 7 + processes = [] 8 + 9 + [env] 10 + RUST_LOG = "debug" 11 + 12 + [experimental] 13 + allowed_public_ports = [] 14 + auto_rollback = true 15 + 16 + [[services]] 17 + http_checks = [] 18 + internal_port = 8080 19 + processes = ["app"] 20 + protocol = "tcp" 21 + script_checks = [] 22 + 23 + [services.concurrency] 24 + hard_limit = 25 25 + soft_limit = 20 26 + type = "connections" 27 + 28 + [[services.ports]] 29 + force_https = true 30 + handlers = ["http"] 31 + port = 80 32 + 33 + [[services.ports]] 34 + handlers = ["tls", "http"] 35 + port = 443 36 + 37 + [[services.tcp_checks]] 38 + grace_period = "1s" 39 + interval = "15s" 40 + restart_limit = 0 41 + timeout = "2s"