Skip to content

NPM with Vaultwarden and self signed cert won't work properly #2828

Answered by vvurzelsepp
vvurzelsepp asked this question in Q&A
Discussion options

You must be logged in to vote

I got it to work. I ditched NPM and started to configure a custom Nginx docker container.

nginx.conf looks like this:

server {
   listen 443 ssl;
   server_name: vaultwarden;
   ssl_certificate: ssl/vaultwarden.crt;
   ssl_certificate_key: ssl/vaultwarden.key;

   location / {
      proxy_pass <IP-to-actual-vaultwarden-instance>;
   }
}

# further server configurations for more services
server {
 ....
}

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by vvurzelsepp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant