summaryrefslogtreecommitdiffstats
path: root/modules/tozt/files/nginx/bitwarden-tls.conf
blob: 6673b1c58090b153e7ff7315f6f3ab8804a73bd1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
server {
    listen       443 ssl;
    server_name  bitwarden.tozt.net;

    access_log  /var/log/nginx/bitwarden.access.log;
    error_log   /var/log/nginx/bitwarden.error.log;

    include ssl;

    location / {
        proxy_pass http://127.0.0.1:8080/;
    }
}
# vim:ft=nginx