Skip to content

Commit

Permalink
Fix up addrs
Browse files Browse the repository at this point in the history
  • Loading branch information
mskelton committed Mar 23, 2024
1 parent be8e096 commit c85926c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ RUN apt-get update -y && apt-get install -y ca-certificates fuse3 sqlite3
COPY --from=flyio/litefs:0.5 /usr/local/bin/litefs /usr/local/bin/litefs

# Move the appropriate LiteFS config file to /etc/ (this one will be used by LiteFS).
COPY etc/litefs.yml /etc/litefs.yml
COPY litefs.yml /etc/litefs.yml

# Run LiteFS as the entrypoint. After it has connected and sync'd with the
# cluster, it will run the commands listed in the "exec" field of the config.
Expand Down
2 changes: 1 addition & 1 deletion fly.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ swap_size_mb = 512
[build]

[http_service]
internal_port = 3000
internal_port = 8080
force_https = true
auto_stop_machines = true
auto_start_machines = true
Expand Down
2 changes: 1 addition & 1 deletion etc/litefs.yml → litefs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ data:
exit-on-error: false

proxy:
addr: ":3000"
addr: ":8080"
target: "127.0.0.1:3000"
db: "prod.db"

Expand Down

0 comments on commit c85926c

Please sign in to comment.