我在将应用程序部署到 Azure 时遇到了麻烦。
我从https://github.com/Autodesk-Forge/forge-configurator-inventor repo 开始。我设法在本地运行它而没有错误。我可以登录、上传我自己的压缩文件、更改参数、导出 pdf 并下载。一切安好。现在我想将应用程序发布到 azure。
应用程序当前正在运行,因此您可以查看:https ://pjk-config.azurewebsites.net
出了什么问题:登录后我无法上传任何模型。不显示错误。如果我改变扳手或车轮模型并更新它,我也不会发生。
我做了什么:
- 创建了 azure 帐户,
- 将回调网址更改为我的应用程序(在我的情况下:“https://pjk-config.azurewebsites.net/”),
- 我通过删除 UseKestrel() 语句更改了 WebApplication.Program.cs(请检查)
{
webBuilder.UseStartup<Startup>();
var port = Environment.GetEnvironmentVariable("PORT");
// If deployed to a service like Heroku, need to listen on port defined in the environment, not the default one
if (!string.IsNullOrEmpty(port))
{
webBuilder.UseUrls("http://*:" + port);
Log.Logger.Information($"PORT environment variable defined to:{port}");
}
});
应用设置:
- 邀请模式 - 假
- 嵌入模式 - 错误
- 发布者设置:(但我在输出中看到轮询,所以我认为缺少某些内容)
"CompletionCheck": "Callback",
"CallbackUrlBase": "https://pjk-config.azurewebsites.net"
- 我通过 VS 2019 部署了 WebApplication 右键单击 - 使用此参考发布: https ://docs.microsoft.com/en-us/visualstudio/deployment/quickstart-deploy-to-azure?view=vs-2019
如果您需要任何其他信息,请告诉我。我一个人与这将近30天作斗争。我是初学者,这是我在此页面上的第一个问题,因此对于缺乏有关我的问题的准确信息,我深表歉意。告诉我你需要什么,我会寄过去的。