Reputation: 23
I am trying to deploy to AppHarbor a website. Of course, i had to disable precompilation and other stuff, but appharbor builds it fine and deploys it to http://nitelists.apphb.com/.
However if you enter, you see a forbiden acess error, don't know why. (note that i am using the SQL lite database that comes integrated with WebMatrix)
Do i have to change something of the web.config file to make it work? This are the actual file contents:
<?xml version="1.0" encoding="UTF-8"?>
<configuration >
</configuration>
Upvotes: 1
Views: 173
Reputation: 26
My web.config file looks like this
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
</configuration>
Upvotes: 1