Hello,
I am trying to get Ente to run and it has raised a few questions
Can you guys help?
-
Is Minio come installed with it, or do I need to install it sep? Ente web app seems to be running on the sever, if that helps
-
How do I set up the api endpoint using a reverse api? I tried to link it to enteapi.mydomain.com. Also, ports 8080, and 443 are already in use.
My firewall blocks all ports except 80, and 443, so I have set up a reverse proxy as follows:
<virtualHost *:80>
ServerName enteapi.mydomain.com
ProxyPass / http://localhost:3200/
ProxyPassReverse / http://localhost:3200/
</virtualHost>
<virtualHost *:80>
ServerName ente.mydomain.com
ProxyPass / http://localhost:8081/
ProxyPassReverse / http://localhost:8081/
</virtualHost>
The webapp runs, but doesn’t accept enteapi.myentedomain.com as my api_endpoint. Does that need to be set elsewhere?
- I attached the compose.yaml file, I think this is set up correctly, but I’m not sure