Release v1.0.0 #16

Merged
Wesser merged 492 commits from release/v1.0.0 into master 2025-02-12 09:19:32 +03:00
238 changed files with 10338 additions and 98 deletions
Showing only changes of commit cdb738ca42 - Show all commits

2
.env
View File

@ -22,7 +22,7 @@ PATH_TO_SAVE=
# integer
# (optional)
# Specify the internal port on which the server will listen.
INTERNAL_PORT=
INTERNAL_PORT=8080
# Security

View File

@ -16,7 +16,6 @@ using Mirea.Api.Endpoint.Middleware;
using Mirea.Api.Security.Services;
using System;
using System.IO;
using Microsoft.AspNetCore.Hosting;
namespace Mirea.Api.Endpoint;
@ -67,14 +66,11 @@ public class Program
});
});
if (!string.IsNullOrEmpty(builder.Configuration.GetValue<string>("INTERNAL_PORT")))
{
builder.WebHost.ConfigureKestrel(options =>
{
options.ListenLocalhost(
int.Parse(builder.Configuration.GetValue<string>("INTERNAL_PORT")!));
});
}
builder.Services.Configure<ForwardedHeadersOptions>(options =>
{