How do you set the root page in an AppHarbor ASP.NET MVC website? -


i'm publishing asp.net web application (this default application vs2013) , publishes fine. when visit application

http://someapp.apphb.com

i "welcome nginx" page. http://someapp.apphb.com/home works.

is there setting on appharbor need change, or need make change webapp?

you can set default document in web config file

<configuration>    <system.webserver>     <defaultdocument>         <files>             <add value="index.html" />         </files>     </defaultdocument>    </system.webserver> </configuration> 

Comments

Popular posts from this blog

javascript - Chart.js (Radar Chart) different scaleLineColor for each scaleLine -

apache - Error with PHP mail(): Multiple or malformed newlines found in additional_header -

java - Android – MapFragment overlay button shadow, just like MyLocation button -