metube. Adding Nginx config.

This commit is contained in:
Alexey Skobkin 2022-03-15 03:43:26 +03:00
parent aa0ae4fdc8
commit 1694e1cdb0
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
server {
listen 80;
server_name metube.domain.tld;
#charset utf-8;
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_read_timeout 600s;
proxy_send_timeout 600s;
proxy_pass http://127.0.0.1:8081/;
}
}