Add Nginx config for piped (through vm)

This commit is contained in:
Edgar P. Burkhart 2023-05-19 15:20:38 +02:00
parent 548fb791bb
commit 24b5d04d4d
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227

View file

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