case insensitive url on post

This commit is contained in:
Tommy Parnell
2022-08-26 13:28:41 -04:00
parent e065871145
commit 2cff53f5d3
4 changed files with 49 additions and 2 deletions

38
fly.toml Normal file
View File

@@ -0,0 +1,38 @@
# fly.toml file generated for tp-blog-2 on 2022-08-26T12:21:08-04:00
app = "tp-blog-2"
kill_signal = "SIGINT"
kill_timeout = 5
processes = []
[env]
[experimental]
allowed_public_ports = []
auto_rollback = true
[[services]]
http_checks = []
internal_port = 80
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"