Originally created by @MaestroJAL on GitHub (Aug 8, 2019).
First off, excellent work on bitwarden_rs! Thank you for this. If I can fix this, my whole family will be set. I cannot seem to login via any browser but the iOS app allows account creation and syncs very well. I'm using Nginx as a reverse proxy. I've tried a lot of different configurations. Here's a snippet of my my current conf:
Originally created by @MaestroJAL on GitHub (Aug 8, 2019).
First off, excellent work on bitwarden_rs! Thank you for this. If I can fix this, my whole family will be set. I cannot seem to login via any browser but the iOS app allows account creation and syncs very well. I'm using Nginx as a reverse proxy. I've tried a lot of different configurations. Here's a snippet of my my current conf:
```
upstream bitwarden_rs {
server 127.0.0.1:8082;
keepalive 64;
}
location /bw/ {
proxy_pass http://bitwarden_rs/;
proxy_redirect off;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $server_name;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Protocol $scheme;
proxy_set_header X-Url-Scheme $scheme;
}
location /bw/notifications/hub {
proxy_pass http://127.0.0.1:3012;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
location /bw/notifications/hub/negotiate {
proxy_pass http://bitwarden_rs/;
}
```
Using bitwarden_rs in a subfolder is not recommended and requires some patches to the web vault to make it work. If you can, I'd recommend to use the root directory, maybe in a subdomain.
@dani-garcia commented on GitHub (Aug 8, 2019):
Using bitwarden_rs in a subfolder is not recommended and requires some patches to the web vault to make it work. If you can, I'd recommend to use the root directory, maybe in a subdomain.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Originally created by @MaestroJAL on GitHub (Aug 8, 2019).
First off, excellent work on bitwarden_rs! Thank you for this. If I can fix this, my whole family will be set. I cannot seem to login via any browser but the iOS app allows account creation and syncs very well. I'm using Nginx as a reverse proxy. I've tried a lot of different configurations. Here's a snippet of my my current conf:
@dani-garcia commented on GitHub (Aug 8, 2019):
Using bitwarden_rs in a subfolder is not recommended and requires some patches to the web vault to make it work. If you can, I'd recommend to use the root directory, maybe in a subdomain.
@MaestroJAL commented on GitHub (Aug 9, 2019):
Thanks for the response! I’ll work to get that done.