Hi All,
I am new to this forum.I am currently working on a migration project where we r porting our windows IIS(ARR) to linux apache.Below is config file for IIS Application request routing.Anyone can help to get equivalent apache configuration for below ..Thanks
<rewrite>
<globalRules>
<rule name="CAST" stopProcessing="true" patternSyntax="ECMAScript">
<match url="((^((video|audio)/.*$))|(^(video|audio)$))" />
<action type="Rewrite" url="http://CAST/{R:0}" />
</rule>
<rule name="WEB" stopProcessing="true" patternSyntax="Wildcard">
<match url="*" />
<action type="Rewrite" url="http://WEB/{R:0}" />
</rule>
</globalRules>
</rewrite>
<webFarms>
<applicationRequestRouting>
<hostAffinityProviderList>
<add name="Microsoft.Web.Arr.HostNameRoundRobin" />
<add name="Microsoft.Web.Arr.HostNameMemory" />
</hostAffinityProviderList>
</applicationRequestRouting>
<webFarm name="CAST" enabled="true">
<server address="127.0.0.1" enabled="true">
<applicationRequestRouting httpPort="82" />
</server>
<applicationRequestRouting>
<protocol>
<cache enabled="false" queryStringHandling="NoCaching" validationInterval="00:00:00" />
</protocol>
</applicationRequestRouting>
</webFarm>
<webFarm name="WEB" enabled="true">
<server address="web.blr.in" enabled="true">
<applicationRequestRouting httpPort="80" />
</server>
<applicationRequestRouting>
<protocol>
<cache queryStringHandling="Accept" enabled="false" validationInterval="00:01:00" />
</protocol>
</applicationRequestRouting>
</webFarm>
</webFarms>