Last active
October 13, 2023 03:33
-
-
Save frostming/05f41d3e35bf798fd224bc23fc07fcd6 to your computer and use it in GitHub Desktop.
A Fly.io config file for OpenCat™ for Team that can be deployed directly
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# fly.toml file generated for still-snowflake-6351 on 2023-03-30T09:53:40+08:00 | |
kill_signal = "SIGINT" | |
kill_timeout = 5 | |
primary_region = "sin" | |
processes = [] | |
[build] | |
image = "bayedev/opencatd" | |
[mount] | |
source = "opencat" | |
destination = "/opt/db" | |
[experimental] | |
auto_rollback = true | |
[[services]] | |
internal_port = 80 | |
protocol = "tcp" | |
[services.concurrency] | |
hard_limit = 25 | |
soft_limit = 20 | |
type = "connections" | |
[[services.ports]] | |
force_https = true | |
handlers = ["http"] | |
port = 80 | |
[[services.ports]] | |
handlers = ["tls", "http"] | |
port = 443 | |
[[services.tcp_checks]] | |
grace_period = "1s" | |
interval = "15s" | |
restart_limit = 0 | |
timeout = "2s" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You may try
flyctl doctor
andLOG_LEVEL=debug fly deploy
to help pinpoint the problem.