Last active
September 3, 2026 19:01
-
-
Save billdeitrick/be244e2e0b1b16d1d8e07969bcdd43fc to your computer and use it in GitHub Desktop.
Athens Church .Well-Known web.config File
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version = "1.0" encoding="UTF-8"?> | |
| <configuration> | |
| <system.webServer> | |
| <staticContent> | |
| <mimeMap fileExtension="." mimeType="text/plain" /> <mimeMap fileExtension=".*" mimeType="text/plain" /> | |
| </staticContent> | |
| <handlers> | |
| <clear /> | |
| <add name="StaticFile" path="*" verb="*" type="" modules="StaticFileModule,DefaultDocumentModule,DirectoryListingModule" scriptProcessor="" resourceType="Either" requireAccess="Read" allowPathInfo="false" preCondition="" responseBufferLimit="4194304" /> | |
| </handlers> | |
| </system.webServer> | |
| </configuration> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <configuration> | |
| <location path="apple-developer-merchantid-domain-association"> | |
| <system.webServer> | |
| <staticContent> | |
| <mimeMap fileExtension="." mimeType="text/plain" /> | |
| </staticContent> | |
| </system.webServer> | |
| </location> | |
| </configuration> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <staticContent> | |
| <mimeMap fileExtension="." mimeType="text/plain" /> | |
| </staticContent> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment