diff options
author | pg9182 <96569817+pg9182@users.noreply.github.com> | 2023-04-26 11:50:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-26 17:50:45 +0200 |
commit | 5869a4756d32f54313e99c613899cfa3acf1187a (patch) | |
tree | bd982a97ad39c2c973deda5010f0f9b0e132ff78 /docs/hosting-a-server-with-northstar/dedicated-server | |
parent | 45fb7c55a8d5090067cb110aff2c48c4576b919c (diff) | |
download | NorthstarWiki-5869a4756d32f54313e99c613899cfa3acf1187a.tar.gz NorthstarWiki-5869a4756d32f54313e99c613899cfa3acf1187a.zip |
Update docs for Northstar v1.13 UDP auth (#158)
Diffstat (limited to 'docs/hosting-a-server-with-northstar/dedicated-server')
-rw-r--r-- | docs/hosting-a-server-with-northstar/dedicated-server/README.md | 4 | ||||
-rw-r--r-- | docs/hosting-a-server-with-northstar/dedicated-server/hosting-on-linux.md | 6 |
2 files changed, 6 insertions, 4 deletions
diff --git a/docs/hosting-a-server-with-northstar/dedicated-server/README.md b/docs/hosting-a-server-with-northstar/dedicated-server/README.md index d0eb059..969a8aa 100644 --- a/docs/hosting-a-server-with-northstar/dedicated-server/README.md +++ b/docs/hosting-a-server-with-northstar/dedicated-server/README.md @@ -111,7 +111,7 @@ Example: `+setplaylistvaroverrides "run_epilogue 0 featured_mode_amped_tacticals Convars are located inside the `R2Northstar\mods\Northstar.CustomServers\mod\cfg\autoexec_ns_server.cfg` file. -They allow the server admin to set server's properties like the name, TCP port, and description. +They allow the server admin to set server's properties like the name, port, and description. | Name | Description | Default Value | Accepted Values | | ------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------ | -------------------------------------------------- | @@ -122,7 +122,7 @@ They allow the server admin to set server's properties like the name, TCP port, | `ns_report_sp_server_to_masterserver` | Whether your server should report itself to the masterserver if started on a singleplayer map, for use in auth and the serverbrowser | `0` | `0-1` | | `ns_auth_allow_insecure` | Allows clients to join your server without authenticating with the masterserver, currently required to allow clients to connect directly to your IP, rather than through the server browser | `0` | `0-1` | | `ns_erase_auth_info` | Whether your server should erase authentication information after it is used, this is useful for development but should normally be kept at 1 | `1` | `0-1` | -| `ns_player_auth_port` | The port used for the server's local authentication server, this is the TCP port we forwarded earlier | `8081` | `1-65535` | +| `ns_player_auth_port` | Northstar v1.12 and older only. The port used for the server's local authentication server, this is the TCP port we forwarded earlier | `8081` | `1-65535` | | `everything_unlocked` | Whether all items, weapons, etc should be unlocked on the server | `1` | `0-1` | | `ns_should_return_to_lobby` | Whether the server should return to private match lobby after completing a game, if 0, this will go to the next map/mode in the playlist | `1` | `0-1` | | `ns_private_match_only_host_can_change_settings` | If 0 Players can change all match settings. If 1 Players can only change map and gamemode. If 2 Players can change nothing | `0` | `0-2` | diff --git a/docs/hosting-a-server-with-northstar/dedicated-server/hosting-on-linux.md b/docs/hosting-a-server-with-northstar/dedicated-server/hosting-on-linux.md index b8bd2c0..caffec9 100644 --- a/docs/hosting-a-server-with-northstar/dedicated-server/hosting-on-linux.md +++ b/docs/hosting-a-server-with-northstar/dedicated-server/hosting-on-linux.md @@ -68,7 +68,8 @@ services: pull_policy: always environment: NS_PORT: 37015 - NS_PORT_AUTH: 8081 + # uncomment for Northstar v1.12 and older + #NS_PORT_AUTH: 8081 NS_SERVER_NAME: "Enter Server Name here" NS_SERVER_DESC: "Enter your description here" NS_EXTRA_ARGUMENTS: | @@ -86,7 +87,8 @@ services: - /home/YOUR_USERNAME_HERE/Titanfall2/mods:/mnt/mods:ro ports: - "37015:37015/udp" - - "8081:8081/tcp" + # uncomment for Northstar v1.12 and older + #- "8081:8081/tcp" restart: always ``` |