summaryrefslogtreecommitdiff
path: root/wwwroot
diff options
context:
space:
mode:
authorJake Mannens <jake@asger.xyz>2026-05-24 02:12:17 +1000
committerJake Mannens <jake@asger.xyz>2026-06-11 01:13:31 +1000
commit03055cb1b262a2b9a0516ad3aa523e503edeb36b (patch)
treee5ff5441cfb7891059c2e524a17d43b2080112d2 /wwwroot
parent5278732fde7a657de82e9e91657ccc0cdfb47ccf (diff)
Removed server config items from appsettings.json
Diffstat (limited to 'wwwroot')
-rw-r--r--wwwroot/appsettings.Development.json14
-rw-r--r--wwwroot/appsettings.json6
2 files changed, 3 insertions, 17 deletions
diff --git a/wwwroot/appsettings.Development.json b/wwwroot/appsettings.Development.json
index b3da6a4..770d3e9 100644
--- a/wwwroot/appsettings.Development.json
+++ b/wwwroot/appsettings.Development.json
@@ -1,19 +1,9 @@
{
- "AllowedHosts": "*",
- "Kestrel": {
- "Endpoints": {
- "Http": {
- "Url": "http://0.0.0.0:7132"
- }
- }
- },
"DetailedErrors": true,
"Logging": {
"LogLevel": {
"Default": "Information",
- "Microsoft.AspNetCore": "Warning",
- "HyperBooru.Services.OcrService": "Debug"
+ "Microsoft.AspNetCore": "Warning"
}
- },
- "DisableOcr": true
+ }
}
diff --git a/wwwroot/appsettings.json b/wwwroot/appsettings.json
index 414e673..0c208ae 100644
--- a/wwwroot/appsettings.json
+++ b/wwwroot/appsettings.json
@@ -4,9 +4,5 @@
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
- },
- "ConnectionStrings": {
- "DefaultConnection": "Host=127.0.0.1;Database=hyperbooru;Username=hyperbooru;Password=password"
- },
- "AllowedHosts": "*"
+ }
}