I have a web application in Angular and i have also created the WCF service in this web application. When i run the web application the URL is localhost:53536/#/Page. Service address is localhost:53536/Service/Service/svc. I hosted the web application and both web app and WCF service is working fine. But i want to host web service on different port or on different address. How can i do this. Here is my web.config
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior name="" >
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="false" />
</behavior>
</serviceBehaviors>
</behaviors>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true"
multipleSiteBindingsEnabled="true" />
<bindings>
<wsDualHttpBinding>
<binding name="MobileServiceBinding" closeTimeout="00:00:05" openTimeout="00:00:05">
<readerQuotas maxDepth="32" maxStringContentLength="5242880" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384" />
</binding>
</wsDualHttpBinding>
</bindings>
<services>
<service name="Web.Mobile.MobileService" >
<endpoint address="" binding="wsDualHttpBinding" bindingConfiguration="MobileServiceBinding" contract="Web.Mobile.IMobileService" />
</service>
</services>
</system.serviceModel>
How i can assign different address to WCF service?