// 添加入站规则 aws ec2 authorize-security-group-ingress --group-name [group_name] --protocol tcp --port [port_number]
// 删除入站规则 aws ec2 revoke-security-group-ingress --group-name [group_name] --protocol tcp --port [port_number]
public void Configure(IApplicationBuilder app, IWebHostEnvironment env){ // ... other configurations ...
// 添加MVC并配置路由
app.UseRouting();
app.UseEndpoints(endpoints => {
endpoints.MapControllers();
});
}
curl http://localhost:[port_number]/[controller_name]/
如果应用程序正确运行,则会得到返回结果。
如果以上步骤均无法解决问题,则可以查看IIS或Nginx等Web服务器是否正确配置,并检查是否已启用HTTPS。