From 75e329b3dff470d1df1faebea3d5fbd9e81971db Mon Sep 17 00:00:00 2001 From: Tommy Parnell Date: Sat, 20 Aug 2022 10:09:37 -0400 Subject: [PATCH] save some cshtml changes --- fly.toml | 39 +++++++++++++++++++ .../Views/Shared/Nav.cshtml | 2 +- .../Views/Shared/_Layout.cshtml | 1 - 3 files changed, 40 insertions(+), 2 deletions(-) create mode 100644 fly.toml diff --git a/fly.toml b/fly.toml new file mode 100644 index 0000000..f6eea10 --- /dev/null +++ b/fly.toml @@ -0,0 +1,39 @@ +# fly.toml file generated for tparnellblog on 2022-08-20T09:53:58-04:00 + +app = "tparnellblog" +kill_signal = "SIGINT" +kill_timeout = 5 +processes = [] + +[env] + +[experimental] + allowed_public_ports = [] + auto_rollback = true + private_network = 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" diff --git a/src/TerribleDev.Blog.Web/Views/Shared/Nav.cshtml b/src/TerribleDev.Blog.Web/Views/Shared/Nav.cshtml index 11530b3..1c77ddb 100644 --- a/src/TerribleDev.Blog.Web/Views/Shared/Nav.cshtml +++ b/src/TerribleDev.Blog.Web/Views/Shared/Nav.cshtml @@ -1,6 +1,6 @@