Your comments

Hello,

Did you find how to make your reverse proxy work ?

I have the same problem as you do and can't find any help on that subject.

I have figured out my first problem I was trying to get the page /odps-comics/ (wrong page) this was /opds-comics/

there I can see the xml


I've figured out that, if I use my IP adress in place of my domain name, ODPS is working fine and the APP can retreive my comics.

so the problem comes from my Nginx reverse proxy !

Does anybody have a valid reverse proxy configuration, that he could share with me ?

here is mine :

server {

  liste 443 ssl;

  server_name comics.mydomain.com;

  

  ssl_certificate /pathtossl

  ssl_certificate_key /pahttocertificatekey

add_header Strict-Transport-Security "max-age=31536000";

  location / {

    proxy_pass http://192.168.0.5:2202/;

    proxy_set_header Host $http_host;

    proxy_set_header X-Real-IP $remote_addre;

    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

    proxy_set_header  X-Scheme $scheme;

    proxy_read_timeout 1800;

proxy_connect_timeout 1800;

    proxy_request_buffering off

  }

}