[BUG] Large video file not uploading in iOS app #251

Closed
opened 2026-02-04 19:03:09 +03:00 by OVERLORD · 2 comments
Owner

Originally created by @wtrdk on GitHub (Sep 5, 2022).

Describe the bug
When uploading a large video file (6.52GB) using the iOS app it hangs at 3%

System

  • Phone OS [iOS]: 16.0 beta
  • Server Version: 1.26.0
  • Mobile App Version: 1.26.0 build 51

Additional context
The upload of this specific file (see screenshots) never passes 3%. All other uploads are processed correctly.

IMG_7931
IMG_7904

Originally created by @wtrdk on GitHub (Sep 5, 2022). <!-- Note: Please search to see if an issue already exists for the bug you encountered. --> **Describe the bug** When uploading a large video file (6.52GB) using the iOS app it hangs at 3% **System** - Phone OS [iOS]: `16.0 beta` - Server Version: `1.26.0` - Mobile App Version: `1.26.0 build 51` **Additional context** The upload of this specific file (see screenshots) never passes 3%. All other uploads are processed correctly. ![IMG_7931](https://user-images.githubusercontent.com/4569244/188405502-ad394df6-d81f-43f4-a61a-ae897b5b7c6d.jpeg) ![IMG_7904](https://user-images.githubusercontent.com/4569244/188405506-3df2a889-ed25-4a51-9723-c3ad87e6244a.jpeg)
Author
Owner

@wtrdk commented on GitHub (Sep 5, 2022):

Okay, well... Browsing the issues and feature requests I bumped into this:
https://github.com/immich-app/immich/issues/567
which made me realise my Nginx Proxy Manager could be the issue.

By adding this to the Advanced tab of my Immich configuration in Nginx Proxy Manager, I got the upload to work!

	proxy_set_header Host $host;
	proxy_set_header X-Forwarded-Proto $scheme;
	proxy_set_header X-Real-IP $remote_addr;
	proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
	proxy_max_temp_file_size 16384m;
	client_max_body_size 0;
Schermafbeelding 2022-09-05 om 10 48 06

So I hope this helps anyone else facing this issue!

@wtrdk commented on GitHub (Sep 5, 2022): Okay, well... Browsing the issues and feature requests I bumped into this: https://github.com/immich-app/immich/issues/567 which made me realise my Nginx Proxy Manager could be the issue. By adding this to the Advanced tab of my Immich configuration in Nginx Proxy Manager, I got the upload to work! ``` proxy_set_header Host $host; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_max_temp_file_size 16384m; client_max_body_size 0; ``` <img width="479" alt="Schermafbeelding 2022-09-05 om 10 48 06" src="https://user-images.githubusercontent.com/4569244/188408479-f285d440-01dc-46ac-b5b7-53b17f8034f8.png"> So I hope this helps anyone else facing this issue!
Author
Owner

@zackpollard commented on GitHub (Sep 5, 2022):

Thanks for investigating and figuring out the solution yourself!

@zackpollard commented on GitHub (Sep 5, 2022): Thanks for investigating and figuring out the solution yourself!
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#251