08-20-2021, 02:13 PM
(This post was last modified: 08-21-2021, 10:32 AM by Сергей Александрович.)
When trying to Add Default Binding=false, the system requires filling in the VirtualHostNames field.
I specify:
VirtualHostNames = region-tail.ru
URLBase = /MyBase1/
procedure TIWServerController.IWServerControllerBaseBind(const aHttpBindings,
aHttpsBindings: TStrings);
begin
aHttpBindings.Add('http://+:80/MyBase1/');
end;
In the local network, it works (http://localhost/MyBase1/)
From the external network not available (http://region-tail.ru/MyBase1/)
I specify:
VirtualHostNames = region-tail.ru
URLBase = /MyBase1/
procedure TIWServerController.IWServerControllerBaseBind(const aHttpBindings,
aHttpsBindings: TStrings);
begin
aHttpBindings.Add('http://+:80/MyBase1/');
end;
In the local network, it works (http://localhost/MyBase1/)
From the external network not available (http://region-tail.ru/MyBase1/)