diff --git a/Dockerfile b/Dockerfile index 212e66d..1baef2c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -80,7 +80,3 @@ COPY --from=builder --chown=nobody:root /app/_build/${MIX_ENV}/rel/website ./ USER nobody CMD ["/app/bin/server"] - -# Appended by flyctl -# ENV ECTO_IPV6 true -# ENV ERL_AFLAGS "-proto_dist inet6_tcp" diff --git a/README.md b/README.md index 7006087..172e0fb 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,6 @@ This is the source code for my personal website and blog. It is built using the - **Framework**: [Phoenix Framework](https://phoenixframework.org/) - **Styling**: [Tailwind CSS](https://tailwindcss.com/) and [daisyUI](https://daisyui.com/) -- **Deployment**: [Fly.io](https://fly.io/) ## Development diff --git a/fly.toml b/fly.toml deleted file mode 100644 index e1fab9d..0000000 --- a/fly.toml +++ /dev/null @@ -1,40 +0,0 @@ -# fly.toml file generated for florian-arens on 2022-10-11T19:44:38+02:00 - -app = "florian-arens" -kill_signal = "SIGTERM" -kill_timeout = 5 -processes = [] - -[env] - PHX_HOST = "farens.me" - PORT = "8080" - -[experimental] - allowed_public_ports = [] - auto_rollback = true - -[[services]] - http_checks = [] - internal_port = 8080 - 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"