Fly.io

出自Gea-Suan Lin's Wiki
跳至導覽 跳至搜尋

Fly.io是一個SaaS供應商。

Cheatsheet

PHP

這邊是先在Dockerfile裡面使用richarvey/nginx-php-fpm的image,並且指定public/目錄才是webroot,同時這個image預設會將服務在port 80:

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

接著在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"

外部連結