-
Notifications
You must be signed in to change notification settings - Fork 144
Open
Description
I have recently completed this nano degree, and this was by far the most difficult project I have ever done at Udacity. Therefore, I wanted to feed back the biggest issue for me with respect to the starter code:
In terraform/modules/appservice, please see appservice.tf:
- As the instructions state, you should set "WEBSITE_RUN_FROM_PACKAGE" to zero, which I have added by myself.
- The starter code is also missing an
application_stack. Without it, the app service will be deployed then, but the FakeRestAPI won't run on it. It will then say:
Forbidden
I could resolve this by taking a look into the knowledge section of this program, and someone provided the missing part:
Application stack
I have implemented everything like that:
...
app_settings = {
"WEBSITE_RUN_FROM_PACKAGE" = 0
}
site_config {
always_on = false
application_stack{
current_stack = "dotnet"
dotnet_version = "v4.0"
}
}
}(Out of convenience, I have also used Windows instead of Linux too, if this makes any difference)
Metadata
Metadata
Assignees
Labels
No labels