ImmichI
Immich12mo ago
cocoltxed

Unable to upload file

My immich server is up to date with version 1.124.2, but until now I hadn't tested the web upload function. Until now I've only used the mobile application. I've realised that uploading video with a browser doesn't work.
When I look at the logs with the ‘docker logs immich_server’ command, I don't see anything.
The configuration of my reverse proxy is as in the documentation, I've tried changing reverse proxy, I've set up caddy but I have the same problem.
I've tried to do this locally on the same network using the private ip, but when I try again using my domain name (WAN), I get the following error in my browser.
server {
    server_name my-domain;

    # allow large file uploads
    client_max_body_size 50000M;

    # Set headers
    proxy_set_header Host              $http_host;
    proxy_set_header X-Real-IP         $remote_addr;
    proxy_set_header X-Forwarded-For   $proxy_add_x_forwarded_for;
    proxy_set_header X-Forwarded-Proto $scheme;

    # enable websockets: http://nginx.org/en/docs/http/websocket.html
    proxy_http_version 1.1;
    proxy_set_header   Upgrade    $http_upgrade;
    proxy_set_header   Connection "upgrade";
    proxy_redirect     off;

    # set timeout
    proxy_read_timeout 600s;
    proxy_send_timeout 600s;
    send_timeout       600s;

    location / {
        proxy_pass my-ip;
    }
}


alt-svc:
h3=":443"; ma=86400
cf-ray:
8ffb84c3ce496f6c-CDG
content-type:
text/html
date:
Fri, 10 Jan 2025 09:09:27 GMT
nel:
{"success_fraction":0,"report_to":"cf-nel","max_age":604800}
report-to:
{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=Pwfp1nu8s1RKd9eNBGhWVSgTP7u2rVABYdIjrlpRKiKGty1TNN7w8BNg7dNVWiHguaHR6IUU6%2Bcz7mCGyV66Qjq4TcWgSLn6izd27H7qGjQy7H02rhS8zkStsuJrrYTZ5A%3D%3D"}],"group":"cf-nel","max_age":604800}

server:
cloudflare
Was this page helpful?