Giter Club home page Giter Club logo

Comments (7)

Prior99 avatar Prior99 commented on June 4, 2024

I am running this plugin against a current Airsonic version and am not experiencing such problems.

Perhaps Logs from Airsonic or any intermediate reverse proxies such as Nginx or Apache2 could help to identify the problem.

from mopidy-subidy.

gerroon avatar gerroon commented on June 4, 2024

@Prior99

Do you mind sharing obfuscated addon config of yours?

from mopidy-subidy.

Prior99 avatar Prior99 commented on June 4, 2024

Sure:

[subidy]
enabled = true
url = https://subdomain.mydomain.tld/
username = thisisnotmyrealusername
password = thisisnotmyrealpassword

from mopidy-subidy.

Prior99 avatar Prior99 commented on June 4, 2024

The Airsonic runs behind an nginx with a configuration like this:

upstream subsonic-prior {
    server localhost:4041 fail_timeout=0;
}

server {
    listen                          [::]:80;
    listen                          80;
    listen                          443 ssl;
    listen                          [::]:443 ssl;
    server_name                     subdomain.mydomain.tld;

    ssl_certificate                 /path/to/fullchain.pem;
    ssl_certificate_key             /path/to/privkey.pem;
    ssl_trusted_certificate         /path/to/chain.pem;
    [ ... ]

    client_max_body_size            4g;

    access_log                      /path/to/access.log;
    error_log                       /path/to/error.log;

    location / {
        proxy_set_header            Host subdomain.mydomain.tld;
        proxy_set_header            X-Forwarded-Proto https;
        proxy_pass                  http://subsonic-prior/;
    }
}

The Airsonic itself is the one from Dockerhub airsonic/airsonic:latest.

from mopidy-subidy.

gerroon avatar gerroon commented on June 4, 2024

Hi

Thanks for posting it. I need to put a port (8080) since this is a local running instance. What would be the format for the default airsonic url (http:localhost:8080) for the url portion ?

Do you think this is the issue for me?> I do not want to run it behind web server.

from mopidy-subidy.

Prior99 avatar Prior99 commented on June 4, 2024

Hey: url = http://localhost:8080/ should work just fine.

from mopidy-subidy.

gerroon avatar gerroon commented on June 4, 2024

@Prior99

Works now, thanks!

from mopidy-subidy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.