Question

Ubuntu 20.04 with .net core api and angular app connection refused

I have Ubuntu droplet and I was able to set up .net core api app on it to be run as a service. When I do curl -v http://localhost:5000/api/values I get proper ones. I do not need this api to be seen outside of the droplet nor do I need to access it from internet. I was able to setup angular app which I can I access online. Problem is that published angular app for some reason is not being able to connect to this .net core api service nor able to get api url at all. The only thing I can see in chrome is connection refused and that is all. I’ve checked access.log and error.log but they will not provide any kind of info since my guess I am not accessing from external network aka internet. Does any one know what did I miss or what else needs to be setup in order for my angular app to be able to get to http://localhost:5000/api? I can provide additional details for config of nginx but not sure how it can be relevant.

Show comments

Submit an answer


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Sign In or Sign Up to Answer

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Bobby Iliev
Site Moderator
Site Moderator badge
December 20, 2020
Accepted Answer

Hi there @nosfaratus,

This sounds like a problem with Nginx, what I could suggest here is to check a few things first:

  • Make sure Nginx is up and running:
  1. sudo systemctl status nginx
  • Make sure that there are no syntax errors in your Nginx config:
  1. sudo nginx -t
  • Try specifying a server_name for your server block:
    server_name  _;
  • In case that you have a firewall, make sure that port 80 is open

Let me know how it goes! Regards, Bobby

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Become a contributor for community

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

DigitalOcean Documentation

Full documentation for every DigitalOcean product.

Resources for startups and SMBs

The Wave has everything you need to know about building a business, from raising funding to marketing your product.

Get our newsletter

Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.

New accounts only. By submitting your email you agree to our Privacy Policy

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.