|
<?xml version="1.0" encoding="utf-8"?>
|
|
<ServiceManifest Name="ApiGw_BasePkg"
|
|
Version="1.0.0"
|
|
xmlns="http://schemas.microsoft.com/2011/01/fabric"
|
|
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
<ServiceTypes>
|
|
<!-- This is the name of your ServiceType.
|
|
This name must match the string used in RegisterServiceType call in Program.cs. -->
|
|
<StatelessServiceType ServiceTypeName="ApiGw_BaseType" />
|
|
</ServiceTypes>
|
|
|
|
<!-- Code package is your service executable. -->
|
|
<CodePackage Name="Code" Version="1.0.0">
|
|
<EntryPoint>
|
|
<ExeHost>
|
|
<Program>ApiGw_Base.exe</Program>
|
|
<WorkingFolder>CodePackage</WorkingFolder>
|
|
</ExeHost>
|
|
<!--<ContainerHost>
|
|
<ImageName>eshop/sf.linux.settings.api:#{tag}#</ImageName>
|
|
</ContainerHost>-->
|
|
</EntryPoint>
|
|
<EnvironmentVariables>
|
|
<EnvironmentVariable Name="ASPNETCORE_ENVIRONMENT" Value="Development"/>
|
|
<EnvironmentVariable Name="ASPNETCORE_URLS" Value="http://0.0.0.0:80"/>
|
|
<EnvironmentVariable Name="UrlMobilMarketing" Value="http://apigw_base.eshoponservicefabricapigwtype/configuration/mobile/marketing" />
|
|
<EnvironmentVariable Name="UrlMobilShopping" Value="http://apigw_base.eshoponservicefabricapigwtype/configuration/mobile/shopping" />
|
|
<EnvironmentVariable Name="UrlWebMarketing" Value="http://apigw_base.eshoponservicefabricapigwtype/configuration/web/marketing" />
|
|
<EnvironmentVariable Name="UrlWebShopping" Value="http://apigw_base.eshoponservicefabricapigwtype/configuration/web/shopping" />
|
|
<EnvironmentVariable Name="OrchestratorType" Value="SF"/>
|
|
</EnvironmentVariables>
|
|
</CodePackage>
|
|
|
|
<!-- Config package is the contents of the Config directoy under PackageRoot that contains an
|
|
independently-updateable and versioned set of custom configuration settings for your service. -->
|
|
<ConfigPackage Name="Config" Version="1.0.0" />
|
|
|
|
<Resources>
|
|
<Endpoints>
|
|
<!-- This endpoint is used by the communication listener to obtain the port on which to
|
|
listen. Please note that if your service is partitioned, this port is shared with
|
|
replicas of different partitions that are placed in your code. -->
|
|
<!--<Endpoint UriScheme="http" Name="sf.linux.settings.api.endpoint" Port="8912" />-->
|
|
<Endpoint Protocol="https" Name="ServiceEndpoint" Type="Input" Port="8912" />
|
|
</Endpoints>
|
|
</Resources>
|
|
</ServiceManifest>
|