Yesterday, 04:29 PM
I had Nginx set up and running on my Jellyfin server just to forward from port 80 to 8096.
I reset the VM it's all running on, and my configs got dumped somewhere along the way...
I know my previous config was extremely simple, but I can't seem to find the example I used.
This is what I currently have, but it isn't working internally, or externally.
Any help would be greatly appreciated.
I reset the VM it's all running on, and my configs got dumped somewhere along the way...
I know my previous config was extremely simple, but I can't seem to find the example I used.
Code:
server {
listen 80;
location / {
proxy_pass http://localhost:8096;
}
location /socket {
proxy_pass http://localhost:8096;
}
}
This is what I currently have, but it isn't working internally, or externally.
Any help would be greatly appreciated.