Introduction
As we know ASP.NET Core is one of the best open source frameworks it used to build a modern web applications and that has t...
For further actions, you may consider blocking this person and/or reporting abuse
Hi Rebin. Thanks for the nice walkthrough. I exactly follow the same steps with our sample core app. If I browse to
http://40.85.162.27/
I am getting onlyWelcome to nginx!
page, if I try to browsehttp://40.85.162.27/home
, I am getting 404 error. Even I tried to upload web API app and for api also I am getting 404. Could you please suggest!Hi ajmaly
Make sure you don't miss any of the steps please try to deploy this simple demo github.com/4Rebin/Asp.netCoreAppDemo
Please let me know, if you face any issue.
Things still looks good ,could you please run the following commands one by one I think the server need a restart
sudo systemctl enable appserviceunitefile.service
sudo systemctl start appserviceunitefile.service
sudo systemctl status appserviceunitefile.service
sudo systemctl restart appserviceunitefile.service
Hi Rebin, I got the reason. While creating Server block, in your command it's,
proxy_pass http://localhost Jump :5000;
I think this is typo (jump), it should be
proxy_pass http://localhost :5000;
After changing it, it's Rocks. Working!!! Thanks again for this article.
Hi amaly,
I am sorry about that, now it is fixed.
Thank you for being here
Could you share me the content of /etc/nginx/sites-available/default
Sure, here is the content of the default file.
thank you so much