ryan
IImmich
•Created by ryan on 1/16/2025 in #help-desk-support
Error loading dynamically imported module
cleared nginx cache and it fixed
6 replies
IImmich
•Created by ryan on 1/16/2025 in #help-desk-support
Error loading dynamically imported module
Still getting the same issue
6 replies
IImmich
•Created by ryan on 1/16/2025 in #help-desk-support
Error loading dynamically imported module
Update: Just updated nginx conf to the example in docs
server {
server_name <public_url>;
# 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://<backend_url>:2283;
}
}
6 replies