noticket - add self-hosted bitwarden for skudak

This commit is contained in:
Bastian de Byl
2025-02-07 19:39:32 -05:00
parent fced2a0038
commit 761bb67b5c
10 changed files with 166 additions and 4 deletions

View File

@@ -0,0 +1,16 @@
server {
modsecurity on;
modsecurity_rules_file /etc/nginx/modsec_includes.conf;
listen 80;
server_name {{ bitwarden_server_name }};
location '/.well-known/acme-challenge' {
default_type "text/plain";
root /srv/http/letsencrypt;
}
location / {
return 302 https://$host$request_uri;
}
}