Hi, My appwrite calls its Localhost/v1 right from frontend. But which container is called among the 18 container?
If you want to understand the Application architecture and infrastructure you can look inside in the main Github repo https://github.com/appwrite/appwrite#architecture
For your question
The data enter to your machine through port 80 and 443 for HTTP & HTTPS to one endpoint only which is Treafik ( A Load balancer container)
Then all the traffic is being forward to the main container appwrite
and to the appwrite-realtime
container
To get a quick overview of the service inspect the Yaml file https://appwrite.io/install/compose
What does Realtime, Appwrite Main Container Do? I cant seem to find Docs
The main container servs all the request being sent to domain/v1
and to the console
The realtime one being sent to /v1/realtime
only
Great Thanks
Sure thing
[SOLVED] Frontend Calls URL?
Recommended threads
- How to Avoid Double Requests in function...
I'm currently using Appwrite's `functions.createExecution` in my project. I want to avoid double requests when multiple actions (like searching or pagination) a...
- Send Email Verification With REST
I am using REST to create a user on the server side after receiving form data from the client. After the account is successfully created i wanted to send the v...
- Use different email hosts for different ...
Hello, I have 2 projects and i want to be able to set up email templates in the projects. Both projects will have different email host configurations. I see ...