When using http protocol, this configuration works fine, but when I try to use
https, I keep getting no_db_file errors (but the operation is successful,
for example, I can create a database, insert values, etc.)
location / {
proxy_pass http://127.0.0.1:5984;
}
How to use the https protocol to make it work?
I found that the trailing slash on the URL affects whether the https proxy works. Maybe it affects Nginx in the same way?
I have a problem accessing the futon interface when using nginx proxy.
When using the http protocol, this configuration works fine, but when I try to use< br>https, I keep getting no_db_file error (but the operation is successful,
for example, I can create a database, insert values, etc.)
location / {< br /> proxy_pass http://127.0.0.1:5984;
}
How to use the https protocol to make it work?
I have used Apache proxy to proxy https to http to execute https on CouchDB: http://wiki.apache.org/couchdb/Apache_As_a_Reverse_Proxy
I found that the trailing slash on the URL affects whether the https proxy works. Maybe it affects Nginx in the same way?