'Entry type from Local to Inherited

I need to set Entry Type = Inherited in IIS server by using web.config file.

Here is my configuration file i need to set Entry Type = Inherited.

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <location path="." inheritInChildApplications="true">
        <system.webServer>
            <staticContent>
                <mimeMap fileExtension=".m3u8" mimeType="application/x-mpegURL" />
            </staticContent>
        </system.webServer>
    </location>
</configuration>

Anyone help me to fix this.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source