I have a problem accessing the futon interface when it is proxied using nginx. This configuration works fine when using the HTTP protocol, but when I try to use https, I constantly get no_db_file errors (but the operations are successful, for example I can create databases, insert values, etc.)
location / { proxy_pass http://127.0.0.1:5984; }
What can I do to make it work correctly using the https protocol?
vissi source share