Couch potato broken by udpate

Hello,

I clicked the update link in the couch potato app and it broke it.

I tried to restore the configuration to a working state but I am failing so far.

I can access couchpotato from local network by going to its own port, but going to /couchpotato only gives me the SSO menu. Clicking couchpotato link on it does nothing.

The nginx config file for couchpotato does not seem different from what I can find for other apps, so I do not understand why this redirect fails:

# cat /etc/nginx/conf.d/<domain>.d/couchpotato.conf 
location /couchpotato {
    proxy_http_version 1.1;
    proxy_pass_header Server;
    proxy_pass http://127.0.0.1:5050;
    proxy_redirect off;
    proxy_set_header Host $http_host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Scheme $scheme;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "upgrade";

    # Include SSOWAT user panel.
    include conf.d/yunohost_panel.conf.inc;
    more_clear_input_headers 'Accept-Encoding';
}

Doing “wget -O - http://127.0.0.1:5050” on the server shows that couchpotato is indeed running correctly at that address. Why does /couchpotato not show this?

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.