Fly.io:修订间差异

来自Gea-Suan Lin's Wiki
跳到导航 跳到搜索
此页面具有访问限制。如果您看见此消息,则说明您没有权限访问此页面。
无编辑摘要
 
第5行: 第5行:
=== PHP ===
=== PHP ===


<code>fly.toml</code>:
這邊是先在<code>Dockerfile</code>裡面使用[https://hub.docker.com/r/richarvey/nginx-php-fpm/ richarvey/nginx-php-fpm]的image,並且指定<code>public/</code>目錄才是webroot,同時這個image預設會將服務在port 80:
 
<syntaxhighlight lang="dockerfile">
ARG WEBROOT=/var/www/html/public
FROM richarvey/nginx-php-fpm:3.1.5
</syntaxhighlight>
 
接著在<code>fly.toml</code> 裡面設定對應的參數


<syntaxhighlight lang="toml">
<syntaxhighlight lang="toml">
第49行: 第56行:
    restart_limit = 0
    restart_limit = 0
    timeout = "2s"
    timeout = "2s"
</syntaxhighlight>
<code>Dockerfile</code>:
<syntaxhighlight lang="dockerfile">
ARG WEBROOT=/var/www/html/public
FROM richarvey/nginx-php-fpm:3.1.4
</syntaxhighlight>
</syntaxhighlight>



2023年6月9日 (五) 19:38的最新版本

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"

外部链接