|
Hey everyone :) I just upgraded my Vaultwarden to 1.29.0 and I removed Releasenotes: But for some reason my Desktop App/Browser App isn't syncing with the Web-Vault (just after reloading). Im using Apache2 Reverse with the following sites-enabled config: (I removed IPs and Domains ^^) I hope someone can help me :) ~Have a nice day! :) |
Replies: 5 comments 20 replies
|
@xKugeki under your You need to put it under your <VirtualHost *:80>
ServerName DOMAIN
ServerAlias DOMAIN
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteCond %{SERVER_NAME} =DOMAIN
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>
<VirtualHost *:443>
ServerName DOMAIN
ServerAlias DOMAIN
# These settings are definitely needed
SSLEngine On
SSLProxyEngine On
ProxyRequests Off
SSLProxyVerify none
SSLProxyCheckPeerCN off
SSLProxyCheckPeerName off
SSLProxyCheckPeerExpire off
SSLEngine on
SSLProxyEngine on
ProxyPass / https://LOCAL_IP/ upgrade=websocket
ProxyPassReverse / https://LOCAL_IP/
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
SSLCertificateFile /etc/letsencrypt/live/DOMAIN/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/DOMAIN/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
</VirtualHost> |
You only have to set the following in your Apache virtual host for If Apache is running on the same machine as vaultwarden, you can just use |
|
If you are not getting it to work, i suggest to revert to your old setup. That should still work. |
|
@tessus domain.com = our domain, just swapped with "domain.com" I actually dont know where that comes from :/ I think that causes one of the problems. |
Okay after rechecking the config and using the examples given from you It seems like the problem was caused by the nginx config ^^
Adding
and changing