- Joined
- Jul 12, 2008
- Messages
- 275
- Solutions
- 13
- Reaction score
- 495
- Location
- Bialystok, Poland
- GitHub
- rookgaard
- YouTube
- Rookgaard
Probably you put
stream in wrong place of /etc/nginx/nginx.conf file (as your error is at line 16). You have to put it below closing tag of http like this:
Code:
stream {
server {
listen 7172;
proxy_pass YOUR_SERVER_IP:7172;
}
}