Additional files

This commit is contained in:
Ben Sarmiento
2024-01-12 19:41:34 +01:00
parent cc37a92d75
commit 827ab8bc55
2 changed files with 59 additions and 0 deletions

14
nginx/plex.conf Normal file
View File

@@ -0,0 +1,14 @@
server {
listen 80;
listen [::]:80;
server_name plex.hostname.tld;
location / {
proxy_pass http://plex:32400;
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;
}
}