File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ int TMVP::Init() {
65
65
ActorSystem.Register (AppData.Tokenator = TMvpTokenator::CreateTokenator (TokensConfig, HttpProxyId));
66
66
67
67
if (Http) {
68
- auto ev = new NHttp::TEvHttpProxy::TEvAddListeningPort (HttpPort, FQDNHostName ());
68
+ auto ev = new NHttp::TEvHttpProxy::TEvAddListeningPort (HttpPort, TStringBuilder () << FQDNHostName () << ' : ' << HttpPort );
69
69
ev->CompressContentTypes = {
70
70
" text/plain" ,
71
71
" text/html" ,
@@ -76,7 +76,7 @@ int TMVP::Init() {
76
76
ActorSystem.Send (HttpProxyId, ev);
77
77
}
78
78
if (Https) {
79
- auto ev = new NHttp::TEvHttpProxy::TEvAddListeningPort (HttpsPort, FQDNHostName ());
79
+ auto ev = new NHttp::TEvHttpProxy::TEvAddListeningPort (HttpsPort, TStringBuilder () << FQDNHostName () << ' : ' << HttpsPort );
80
80
ev->Secure = true ;
81
81
ev->SslCertificatePem = TYdbLocation::SslCertificate;
82
82
ev->CompressContentTypes = {
You can’t perform that action at this time.
0 commit comments