From d467a544c352cd2dab8d7bbda327f4ecf7bdba47 Mon Sep 17 00:00:00 2001 From: Anthony Wang Date: Fri, 21 Jan 2022 21:00:52 -0600 Subject: [PATCH] Proxy pass to Duecrypt server --- duecrypt.conf | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 duecrypt.conf diff --git a/duecrypt.conf b/duecrypt.conf new file mode 100644 index 0000000..2aecf74 --- /dev/null +++ b/duecrypt.conf @@ -0,0 +1,11 @@ +server { + listen 443 ssl http2; + listen [::]:443 ssl http2; + server_name duecrypt.exozy.me; + + include conf.d/ssl; + + location / { + proxy_pass http://192.168.122.49; + } +}