Fly.io

出自Gea-Suan Lin's Wiki
於 2023年6月9日 (五) 19:35 由 Gslin留言 | 貢獻 所做的修訂
跳至導覽 跳至搜尋

Fly.io是一個SaaS供應商。

Cheatsheet

PHP

fly.toml

app = "example-app-12345"
kill_signal = "SIGINT"
kill_timeout = 5
primary_region = "nrt"
processes = []

[build]
  dockerfile = "Dockerfile"

[env]
  PORT=8080

[experimental]
  auto_rollback = true

[[services]]
  http_checks = []
  internal_port = 80
  min_machines_running = 0
  processes = ["app"]
  protocol = "tcp"
  script_checks = []
  [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"

Dockerfile

ARG WEBROOT=/var/www/html/public
FROM richarvey/nginx-php-fpm:3.1.4

外部連結