Skip to content

Commit

Permalink
Merge pull request #11 from jehrhardt/use-correct-host
Browse files Browse the repository at this point in the history
Set host to cozycoder.app
  • Loading branch information
jehrhardt authored Sep 20, 2024
2 parents 7a3caa3 + 97346f2 commit 86d3232
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions fly.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,26 +10,26 @@ kill_signal = 'SIGTERM'
[build]

[deploy]
release_command = '/app/bin/migrate'
release_command = '/app/bin/migrate'

[env]
PHX_HOST = 'cozycoder.fly.dev'
PORT = '8080'
PHX_HOST = 'cozycoder.app'
PORT = '8080'

[http_service]
internal_port = 8080
force_https = true
auto_stop_machines = 'stop'
auto_start_machines = true
min_machines_running = 0
processes = ['app']
internal_port = 8080
force_https = true
auto_stop_machines = 'stop'
auto_start_machines = true
min_machines_running = 0
processes = ['app']

[http_service.concurrency]
type = 'connections'
hard_limit = 1000
soft_limit = 1000
[http_service.concurrency]
type = 'connections'
hard_limit = 1000
soft_limit = 1000

[[vm]]
memory = '1gb'
cpu_kind = 'shared'
cpus = 1
memory = '1gb'
cpu_kind = 'shared'
cpus = 1

0 comments on commit 86d3232

Please sign in to comment.