Azure Web application settings

Here to configure their own record at work, used in the Azure Web applications

Set NodeJS version

Azure Web application default NodeJS version 0.10.4, this version is too low, can not meet the actual needs
refer to the diagram changes, according to their actual needs, all the environmental variables can be set here

I was here to find

Set upload size limit


According to the picture, find the web.config file, do not create a new one, enter the following

<configuration>
   <system.webServer>
      <security>
         <requestFiltering>
            <requestLimits maxAllowedContentLength=1000000"<valueInBytes>"/>
         </requestFiltering>
      </security>
   </system.webServer>
</configuration>

In maxAllowedContentLengththe back is provided on the line size, in bytes

In the case of existing web.config file, to ensure that the correct level, or web application will fail to start

Guess you like

Origin www.cnblogs.com/itshun/p/11604878.html