Add Nginx config for piped (through vm)
This commit is contained in:
parent
548fb791bb
commit
24b5d04d4d
1 changed files with 12 additions and 0 deletions
12
src/Nginx/sites/piped.conf
Normal file
12
src/Nginx/sites/piped.conf
Normal 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;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue