Alex
Alex
Can you check what do you get from `/api/server-info/ping`? Also do you have any firewall on? If so, can you allow port 2283?
Is your `VITE_SERVER_ENDPOINT` your local ip or external domain name?
If you try to access your instance over `https://immich.yourdomain.com` then your `VITE_SERVER_ENDPOINT` will need to be `https://immich.yourdomain.com/api`
And vice versa, if you access the site from your local IP, let's say `http://192.168.1.50:2283` then your `VITE_SERVER_ENDPOINT` will be `http://192.168.1.50:2283/api`
@n8jadams Hello, has this issue been resolved?
what is your reverse proxy setup like?
I think what you will want to do is something similar to the setup below. ```nginx server { listen 80; server_name immich.mydoamin.com; location / { proxy_pass http://your-local-machine-ip-running-immich:2283; } } ```
@rondadon Can you share your `.env` file?
@dnburgess `VITE_SERVER_ENDPOINT` is usually the value that most get wrong, can you share yours? You shouldn't use the `latest` tag since it might not work properly, please use the `release`...
@dnburgess is your CloudFlare tunnel allow port 2283? I am not sure if you are accessing through a reverse proxy or direct access on port 2283. If you can share...