One solution for IOS App not playing videos #7236

Closed
opened 2026-02-05 12:53:18 +03:00 by OVERLORD · 0 comments
Owner

Originally created by @feixiang-1 on GitHub (Sep 16, 2025).

I have searched the existing issues, both open and closed, to make sure this is not a duplicate report.

  • Yes

The bug

iOS App <=> Cloudflare CDN / Proxy <=> Nginx Reverse Proxy <=> Immich Docker Container
Some headers are missing in the middle , After adding these headers, my phone finally plays videos

location / {
        proxy_pass http://<backend_url>:2283;

        ######## --- Key improvements to support video segmentation ---
        proxy_set_header Range $http_range;
        proxy_set_header If-Range $http_if_range;
        add_header Accept-Ranges bytes always;
        proxy_buffering off;
    }

The OS that Immich Server is running on

n/a

Version of Immich Server

n/a

Version of Immich Mobile App

n/a

Platform with the issue

  • Server
  • Web
  • Mobile

Device make and model

iPhone14 Pro max

Your docker-compose.yml content

n/a

Your .env content

n/a

Reproduction steps

n/a

Relevant log output


Additional information

No response

Originally created by @feixiang-1 on GitHub (Sep 16, 2025). ### I have searched the existing issues, both open and closed, to make sure this is not a duplicate report. - [x] Yes ### The bug iOS App <=> Cloudflare CDN / Proxy <=> Nginx Reverse Proxy <=> Immich Docker Container Some headers are missing in the middle , After adding these headers, my phone finally plays videos ``` location / { proxy_pass http://<backend_url>:2283; ######## --- Key improvements to support video segmentation --- proxy_set_header Range $http_range; proxy_set_header If-Range $http_if_range; add_header Accept-Ranges bytes always; proxy_buffering off; } ``` ### The OS that Immich Server is running on n/a ### Version of Immich Server n/a ### Version of Immich Mobile App n/a ### Platform with the issue - [ ] Server - [ ] Web - [x] Mobile ### Device make and model iPhone14 Pro max ### Your docker-compose.yml content ```YAML n/a ``` ### Your .env content ```Shell n/a ``` ### Reproduction steps n/a ### Relevant log output ```shell ``` ### Additional information _No response_
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#7236