fix: set default port 8080

This commit is contained in:
Polianin Nikita 2024-07-05 01:11:24 +03:00
parent d45c865f4e
commit cdb738ca42
2 changed files with 1 additions and 5 deletions

2
.env
View File

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

View File

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