Like [NEX Protocol](https://nightfall.city/nex/info/specification.txt), NPS data could be simply passed using any proxy server that support TCP forwarding
Like [NEX Protocol](https://nightfall.city/nex/info/specification.txt), NPS data could be simply forwarded using any proxy server that support TCP streams
### Nginx
### Nginx
1. `sudo nano /etc/nginx/nginx.conf`
```
# /etc/nginx/nginx.conf
``` /etc/nginx/nginx.conf
stream {
stream {
server {
server {
listen 1915;
listen 1915;
@ -78,8 +78,6 @@ stream {
}
}
```
```
2. `sudo systemctl restart nginx`
## Clients
## Clients
* `nc 127.0.0.1 1915` - IPv4 only, install `netcat-openbsd` to add IPv6 support
* `nc 127.0.0.1 1915` - IPv4 only, install `netcat-openbsd` to add IPv6 support