-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Order by descending order on upload pages
- Loading branch information
1 parent
a3b8640
commit 6916fd5
Showing
4 changed files
with
380 additions
and
108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,15 @@ | ||
# fly.toml file generated for filehouse on 2023-02-07T18:36:03+13:00 | ||
# fly.toml app configuration file generated for filehouse on 2023-10-05T07:53:03+13:00 | ||
# | ||
# See https://fly.io/docs/reference/configuration/ for information about how to use this file. | ||
# | ||
|
||
app = "filehouse" | ||
primary_region = "syd" | ||
kill_signal = "SIGINT" | ||
kill_timeout = 5 | ||
processes = [] | ||
kill_timeout = "5s" | ||
|
||
[experimental] | ||
auto_rollback = true | ||
|
||
[env] | ||
domain = "filehouse.fly.dev" | ||
|
@@ -12,43 +18,40 @@ processes = [] | |
maxupload = "50 MB" | ||
owner = "oranges" | ||
owner_email = "[email protected]" | ||
perpage = "40" | ||
protocol = "https" | ||
registration = "False" | ||
securecookie = "True" | ||
smtpfrom = "[email protected]" | ||
storage = "/storage/" | ||
support ="contact me on discord" | ||
perpage="40" | ||
support = "contact me on discord" | ||
|
||
[mounts] | ||
source="filehouse_data" | ||
destination="/storage" | ||
[processes] | ||
app = "" | ||
|
||
[experimental] | ||
auto_rollback = true | ||
[mounts] | ||
source = "filehouse_data" | ||
destination = "/storage" | ||
|
||
[[services]] | ||
http_checks = [] | ||
protocol = "tcp" | ||
internal_port = 8000 | ||
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 | ||
handlers = ["http"] | ||
force_https = true | ||
|
||
[[services.ports]] | ||
handlers = ["tls", "http"] | ||
port = 443 | ||
handlers = ["tls", "http"] | ||
[services.concurrency] | ||
type = "connections" | ||
hard_limit = 25 | ||
soft_limit = 20 | ||
|
||
[[services.tcp_checks]] | ||
grace_period = "1s" | ||
interval = "15s" | ||
restart_limit = 0 | ||
timeout = "2s" | ||
grace_period = "1s" |
Oops, something went wrong.