-
-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Run the game on HTTP port instead of 443 #229
Comments
We have fixed this in our private upstream repository but haven't open-sourced it yet. Until then, consider editing this line to use whatever port numbers you want: mk48/engine/game_server/src/options.rs Line 135 in 7b5fa7f
// (http, https)
let ports = (123, 456); |
OK, so how can I disable HTTPS? Because I would like to use nginx to proxy it and enable HTTPS on the source site make the configuration more complex. |
Hmm, that's a different code change. Go here: mk48/engine/game_server/src/entry_point.rs Lines 585 to 678 in 7b5fa7f
Remove all |
Thanks for your answering. |
When I run the game with the varible --http-port , it will automaticlly use the port 443 and redirect the HTTP request to port 443, but the port 443 of my server is used by nginx to deploy some other services. I would likevto know how to deploy the game on an another port instead of 443, thanks.
The text was updated successfully, but these errors were encountered: