Использование преобразования при публикации в Azure, но не во время локальной разработки

Я пытаюсь узнать, как создать преобразование для Visual Studio ASP.Net MVC. Я хочу ограничить определенные IP-адреса в Azure, но оставить все доступным в localhost на моем компьютере разработчика. Что мне нужно изменить в файле web.debug.config, чтобы включить только IP-адреса ниже для публикации профиля отладки в Azure?

IP-адреса, которые я хочу дать доступ в Azure

<security>
  <ipSecurity allowUnlisted="false" denyAction="NotFound">
    <add allowed="true" ipAddress="98.234.233.202" subnetMask="255.255.0.0"/>
    <add allowed="true" ipAddress="54.187.174.169" subnetMask="255.255.0.0"/>
    <add allowed="true" ipAddress="54.187.205.235" subnetMask="255.255.0.0"/>
    <add allowed="true" ipAddress="54.187.216.72" subnetMask="255.255.0.0"/>
    <add allowed="true" ipAddress="54.241.31.99" subnetMask="255.255.0.0"/>
    <add allowed="true" ipAddress="54.241.31.102" subnetMask="255.255.0.0"/>
    <add allowed="true" ipAddress="54.241.34.107" subnetMask="255.255.0.0"/>
  </ipSecurity>  
</security>

Вот мой файл web.deb.config

<?xml version="1.0"?>

<!-- For more information on using Web.config transformation visit https://go.microsoft.com/fwlink/?LinkId=301874 -->

<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
  <!--
    In the example below, the "SetAttributes" transform will change the value of
    "connectionString" to use "ReleaseSQLServer" only when the "Match" locator
    finds an attribute "name" that has a value of "MyDB".

    <connectionStrings>
      <add name="MyDB"
        connectionString="Data Source=ReleaseSQLServer;Initial Catalog=MyReleaseDB;Integrated Security=True"
        xdt:Transform="SetAttributes" xdt:Locator="Match(name)"/>
    </connectionStrings>
  -->
  <system.web>
    <!--
      In the example below, the "Replace" transform will replace the entire
      <customErrors> section of your Web.config file.
      Note that because there is only one customErrors section under the
      <system.web> node, there is no need to use the "xdt:Locator" attribute.

      <customErrors defaultRedirect="GenericError.htm"
        mode="RemoteOnly" xdt:Transform="Replace">
        <error statusCode="500" redirect="InternalError.htm"/>
      </customErrors>
    -->
  </system.web>
  <!--<system.webServer>
    <security>
      <ipSecurity allowUnlisted="false" denyAction="NotFound">
        <add allowed="true" ipAddress="98.234.233.202" subnetMask="255.255.0.0"/>
      </ipSecurity>  
    </security>
  </system.webServer>-->
</configuration>

0 ответов

Другие вопросы по тегам