Skip to content
Advertisement

Python + FastAPI + OracleCloud: How to expose my python fastapi endpoint on Oracle Cloud to Internet

I have a Python + FastAPI restful API project running the free tier of Oracle Cloud VM instance.

I use Gunicorn to serve the api and also installed Nginx just in case it’s needed.

I have tested my running project with

curl http://localhost:8000

and I can see my API response.

Now my question is : how can I expose this api endpoint outside on the Internet?


Update 1

I started my Python API project with this command:

JavaScript

I saw the messages below:

JavaScript

Then I copied the IP address from the Compute >> Instances >> Instance Details panel and accessed it from my Chrome. Straightaway, it shows me

Unable to connect

Also read through several articles about using Nginx and tried without any luck.


Update 2

Using curl to access the website from my local machine

JavaScript

However, when access the IP directly using curl, I was able to get the default Nginx website. $ curl http://168.138.12.192

Advertisement

Answer

Finally, I found out what I missed:

JavaScript

I have to run this command to open the port 8000(yes, my website is using port 8000).

I thought I have added Ingress Rule to accept tcp 8000, but it turns out that I still need to run the aforementioned command.

I do not quite understand why I need to do it, but it solves the problem.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement