Skip to content

Instantly share code, notes, and snippets.

@lbvf50mobile
Created February 20, 2017 15:32
Show Gist options
  • Save lbvf50mobile/b3a64c11e006c321bbafe1e96da9a549 to your computer and use it in GitHub Desktop.
Save lbvf50mobile/b3a64c11e006c321bbafe1e96da9a549 to your computer and use it in GitHub Desktop.
Configure nginx to proxy quake2 sever. Insert into /etc/nginx/nginx.conf
// ...
stream{
server {
listen 27911 udp;
proxy_pass quake2;
}
upstream quake2 {
server 192.168.1.2:27922;
}
}
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment