aboutsummaryrefslogtreecommitdiff
path: root/docs/modding-and-development/development/northstarmasterserver
diff options
context:
space:
mode:
authorGeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com>2023-10-11 17:44:22 +0200
committerGitHub <noreply@github.com>2023-10-11 17:44:22 +0200
commit23849da8988eb016c769efa78f1323242ac34a97 (patch)
treeb180542b527a7eca0371c0db49cb47e8f4e2544a /docs/modding-and-development/development/northstarmasterserver
parent97665ea7ad1b65a0e6542326b01aca6d116e7fba (diff)
downloadNorthstarWiki-23849da8988eb016c769efa78f1323242ac34a97.tar.gz
NorthstarWiki-23849da8988eb016c769efa78f1323242ac34a97.zip
Adjust development section folder structure (#235)
* Adjust development section folder structure The structure of development related pages is a leftover from when modding and development were combined in a single folder. Modding related content has since long moved to ModdingDocs. As such we should update the folder structure accordingly * Update broken links
Diffstat (limited to 'docs/modding-and-development/development/northstarmasterserver')
-rw-r--r--docs/modding-and-development/development/northstarmasterserver/README.md15
-rw-r--r--docs/modding-and-development/development/northstarmasterserver/deploy.md27
2 files changed, 0 insertions, 42 deletions
diff --git a/docs/modding-and-development/development/northstarmasterserver/README.md b/docs/modding-and-development/development/northstarmasterserver/README.md
deleted file mode 100644
index e40cef5..0000000
--- a/docs/modding-and-development/development/northstarmasterserver/README.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# NorthstarMasterServer
-
-{% hint style="warning" %}
-The old NodeJS master server has been replaced in favour of the Go rewrite called Atlas.
-{% endhint %}
-
-## Introduction
-
-The master server is responsible for centralizing game servers created by players, it also verifies that connecting players own an Origin account with Titanfall 2.
-
-There's no need to host your own master server to play games with other people, you can use [direct connect](../../../using-northstar/direct-connect.md) or just setup a [normal server](../../../hosting-a-server-with-northstar/basic-listen-server.md) that announces itself to `northstar.tf`. This tutorial is aimed for those who want to contribute improvements to the code or test their own changes to the project.
-
-## Contents
-
-* [Deploy](deploy.md)
diff --git a/docs/modding-and-development/development/northstarmasterserver/deploy.md b/docs/modding-and-development/development/northstarmasterserver/deploy.md
deleted file mode 100644
index c384730..0000000
--- a/docs/modding-and-development/development/northstarmasterserver/deploy.md
+++ /dev/null
@@ -1,27 +0,0 @@
-# Deploy
-
-## Development
-
-A Development Master Server uses http requests, it should be used for development purposes on your local machine.
-
-### Installation steps
-
-1. Clone [NorthstarMasterServer](https://github.com/R2Northstar/NorthstarMasterServer).
-2. Copy the default [dev.env](https://github.com/R2Northstar/NorthstarMasterServer/blob/main/dev.env) to `.env` replace the ip with `127.0.0.1`.
-3. Run `npm install` && `npm run watch`.
-
-Your master server is now running, to connect to it you need to change some configuration files.
-
-Northstar default masterserver is https://northstar.tf, to point to a new location you need to modify this URL in the `autoexec_ns_server.cfg` and `autoexec_ns_client.cfg` config files.
-
-### Enabling HTTPS
-
-HTTPS should be used if you plan for other people to use your master server. It can be enabled pretty easy with [Caddy](https://caddyserver.com/). Download a Caddy binary and create a `Caddyfile` with the following content:
-
-```
-{$SHORTDOMAIN:localhost} {
- reverse_proxy http://127.0.0.1:8080
-}
-```
-
-After configuring your DNS domain you can run it with `SHORTDOMAIN=example.com caddy run`. Caddy will automatically generate and maintain your certificates for you, check its documentation for more info: https://caddyserver.com/docs/