Created a
.Net Core Web App
.Net Core web application contains multiple projects, but I deployed an API project. Error : HTTP ERROR 404 No webpage was found for the web address: http://....
BeanStalk details are shown above.
Amazon S3 details are shown above. My doubt is, there have some permission issue or URL need to qualify completely for API call.
EC2 instance running fine.
launchsettings.json
{
"$schema": "http://json.schemastore.org/launchsettings.json",
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:19095",
"sslPort": 44327
}
},
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"launchUrl": "swagger",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"DATABASE_NAME": "FYP",
"PROFILE_COLLECTION_NAME": "Profiles",
"MAIL_COLLECTION_NAME": "Mailes",
"INTERESTSENT_COLLECTION_NAME": "InterestSents",
"INTERESTRECIEVED_COLLECTION_NAME": "InterestRecieveds",
"SEEN_COLLECTION_NAME": "Seens",
"SHORTLIST_COLLECTION_NAME": "Shortlists",
"SKIP_COLLECTION_NAME": "Skips",
"CHATBOT_COLLECTION_NAME": "Chatbots",
"MEMBERSHIP_COLLECTION_NAME": "Memberships",
"NOTIFICATION_COLLECTION_NAME": "Notifications",
"SETTINGS_COLLECTION_NAME": "Settings",
"SUPPORT_COLLECTION_NAME": "Supports",
"USERACTION_COLLECTION_NAME": "UserActions",
"USERCHAT_COLLECTION_NAME": "UserChats",
"VERIFICATION_COLLECTION_NAME": "Verifications"
}
},
"Matrimony.Api": {
"commandName": "Project",
"dotnetRunMessages": "true",
"launchBrowser": true,
"launchUrl": "swagger",
"applicationUrl": "https://localhost:5001;http://localhost:5000",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"DATABASE_NAME": "FYP",
"PROFILE_COLLECTION_NAME": "Profiles",
"MAIL_COLLECTION_NAME": "Mailes",
"INTERESTSENT_COLLECTION_NAME": "InterestSents",
"INTERESTRECIEVED_COLLECTION_NAME": "InterestRecieveds",
"SEEN_COLLECTION_NAME": "Seens",
"SHORTLIST_COLLECTION_NAME": "Shortlists",
"SKIP_COLLECTION_NAME": "Skips",
"CHATBOT_COLLECTION_NAME": "Chatbots",
"MEMBERSHIP_COLLECTION_NAME": "Memberships",
"NOTIFICATION_COLLECTION_NAME": "Notifications",
"SETTINGS_COLLECTION_NAME": "Settings",
"SUPPORT_COLLECTION_NAME": "Supports",
"USERACTION_COLLECTION_NAME": "UserActions",
"USERCHAT_COLLECTION_NAME": "UserChats",
"VERIFICATION_COLLECTION_NAME": "Verifications"
}
}
},
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://+:5001"
}
}
}
}





