hi people, can you help me? i am trying to configure nginx with immich and i have a problem, as in the file /etc/nginx/sites-available i had until now jellyfin.conf now i have created another one that is for immich with immich.conf adding this:
server {
server_name immich.mydomain.tld;
# 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 http://192.168.96.111:2283;
}
}```
I also added it through a symbolic link to `/etc/nginx/sites-enabled` but when I access immich I get `http://immich.mydomain.tdl/web` where `/web` is equivalent to something from the jellyfin url when I access it, I don't know why there is this conflict but I can't solve it, this is how it looks when I access the immich url
PD: for what it's worth I share the end of the `jellyfin.conf` file in case you can help me to find the error, I would be very grateful!
.