From 24b5d04d4d97dae4fb5a2fe7533d36ae81182c8f Mon Sep 17 00:00:00 2001 From: "Edgar P. Burkhart" Date: Fri, 19 May 2023 15:20:38 +0200 Subject: [PATCH] Add Nginx config for piped (through vm) --- src/Nginx/sites/piped.conf | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/Nginx/sites/piped.conf diff --git a/src/Nginx/sites/piped.conf b/src/Nginx/sites/piped.conf new file mode 100644 index 0000000..1bd8760 --- /dev/null +++ b/src/Nginx/sites/piped.conf @@ -0,0 +1,12 @@ +server { + listen 443 ssl http2; + listen [::]:443 ssl http2; + server_name piped.edgarpierre.fr pipedapi.edgarpierre.fr pipedproxy.edgarpierre.fr; + include conf/10-certbot-edgarpierre.conf; + + location / { + include conf/50-proxy.conf; + + proxy_pass http://192.168.122.133:8080; + } +}