1
0
Fork 0
forked from exozyme/nginx

Proxy pass to Duecrypt server

This commit is contained in:
Anthony Wang 2022-01-21 21:00:52 -06:00
parent 7ec4b5ab37
commit d467a544c3
Signed by untrusted user: a
GPG key ID: BC96B00AEC5F2D76

11
duecrypt.conf Normal file
View file

@ -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;
}
}