1
0
Fork 0
forked from exozyme/nginx

Move game ports to 1950 and 1951

This commit is contained in:
Anthony Wang 2022-01-16 16:38:34 -06:00
parent 2036b06969
commit da0e013a97
Signed by untrusted user: a
GPG key ID: BC96B00AEC5F2D76

View file

@ -6,6 +6,10 @@ server {
include conf.d/ssl;
location / {
proxy_pass http://localhost:5000;
proxy_pass http://localhost:1950;
}
location /server {
proxy_pass http://localhost:1951;
}
}