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
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
Post a Comment