Immich: Difference between revisions
m fix typo |
I was unable to upload videos to Immich. Turned out that nginx was refusing upload of large files. So I took instructions from https://v1.122.2.archive.immich.app/docs/administration/reverse-proxy#nginx-example-config and added some missing config for nginx. |
||
Line 25: | Line 25: | ||
proxyPass = "http://[::1]:${toString config.services.immich.port}"; | proxyPass = "http://[::1]:${toString config.services.immich.port}"; | ||
proxyWebsockets = true; | proxyWebsockets = true; | ||
recommendedProxySettings = true; | |||
extraConfig = '' | |||
client_max_body_size 50000M; | |||
proxy_read_timeout 600s; | |||
proxy_send_timeout 600s; | |||
send_timeout 600s; | |||
''; | |||
}; | }; | ||
}; | }; |