我已使用app.yaml
将我的dotnetcore 2.0应用托管在GCP App Engine上,如下所示。
runtime: aspnetcore
env: flex
manual_scaling:
instances: 1
resources:
cpu: 1
memory_gb: 0.5
disk_size_gb: 10
endpoints_api_service:
name: ***********
rollout_strategy: managed
我的API工作正常,但是当我尝试使用指向cshtml
的资源加载wwwroot
视图时,加载资源(例如.js,.css)时出现错误
{
"code": 5,
"message": "Method does not exist.",
"details": [
{
"@type": "type.googleapis.com/google.rpc.DebugInfo",
"stackEntries": [],
"detail": "service_control"
}
]
}
我在这里的目的是拥有一个可提供Web API和Angular6 UI SPA的dotnetcore应用。