idea-christian commented on issue #5524:
URL: https://github.com/apache/couchdb/issues/5524#issuecomment-2901753619
@crowbait We are using it with Nginx for multiple servers and below is a
config example from us:
```
root /var/www/couchssl;
server_name your.url.goes.here;
location /couchdb {
rewrite /couchdb/(.*) /$1 break;
proxy_pass http://localhost:5984/_session;
proxy_redirect off;
proxy_read_timeout 3600;
proxy_buffering off;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Ssl on;
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]