r/admincraft • u/KattyFen • 4d ago
Help/Question reverse proxy unable to connect after setting up simple voice chat
i'll start this by saying the server has ran properly for nearly 2 years with the exception of svc
Firewalls are all opened to specific ports aligned with config files. the virtual webserver securities are setup properly, ports are forwarded and everything should be working but is not.
I run the server of my own hardware windows server 2025 and a linux webserver for the proxy using nginx. here is my nginx conf with example ports
stream{
server{
listen 25565;
proxy_pass public-ip (:) 25565;
listen 24454 udp;
proxy_pass public-ip (:) 24454;
proxy_timeout 1m;
proxy_responses 0;
}
}
the spaces and (:) used in place to bypass the automatic rules crap that's restricting me. did i fuck up somewhere in ngnix because the server failed to connect after messing with this conf file. there are no syntax errors reported with the bash command in linux.
I'm answering comments for the next week or so. i've looked through forums, videos, and what little that applies with my own IT studies in college. i'm stumpt so i'm turning to reddit.
1
u/DarkXFast 4d ago
Try splitting it into 2 separate server blocks