Hi there!
I have Flask (port 5000) and Angular (port 80) running on my droplet. I’d like to allow connections to my Flask backend only from the Angular app. I configure my firewall rules using ufw
. From what I understand, the commands below should do the trick:
sudo ufw deny 5000/tcp
sudo ufw allow from 159.203.105.68 to any port 5000 proto tcp
Unfortunately they doesn’t work and I end up with the Flask app being inaccessible from any IP. Is there any other way to achieve my goal? Perhaps other ufw
rules?
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.
Hello,
It is possible that the outgoing TCP connections on port 5000 are not allowed on your Angular Droplet. To test that what you could do is SSH to the droplet and then run:
If you are unable to connect then you have to open port 5000 for outgoing TCP traffic on your frontend Droplet, you could do this with this command:
Let me know how it goes! Regards, Bobby
Sorry for a duplicated question (and for posting my droplet IP. I should have mask it, unfortunately there is no edit option).