Skip to content

Commit a5bc675

Browse files
authoredDec 30, 2020
Replace "master server" with "serverlist" in README.md (#43)
1 parent 578a7bc commit a5bc675

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed
 

Diff for: ‎README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ And finally compile the template:
2525
$ cd static
2626
$ ~/node_modules/dot/bin/dot-packer -s .
2727

28-
You can now serve the webpage by copying the files in static/ to your web root, or by [starting the master server](#setting-up-the-server).
28+
You can now serve the webpage by copying the files in static/ to your web root, or by [starting the server list](#setting-up-the-server).
2929

3030

3131
Embedding the server list in a page
@@ -99,29 +99,29 @@ Setting up the server
9999
Setting up the server (Apache version)
100100
---------------------
101101

102-
If you wish to use Apache to host the master server, do steps 1-2, 4, above. Additionally install/enable mod_wsgi and an Apache site config like the following:
102+
If you wish to use Apache to host the server list, do steps 1-2, 4, above. Additionally install/enable mod_wsgi and an Apache site config like the following:
103103

104-
# This config assumes you have the master-server at DocumentRoot.
104+
# This config assumes you have the server list at DocumentRoot.
105105
# Visitors to the server list in this config would visit http://local.server/ and
106106
# apache would serve up the output from server.py. Static resources would be served
107107
# from http://local.server/static.
108108

109109
# Where are the minetest-server files located?
110-
DocumentRoot /var/games/minetest/master-server
110+
DocumentRoot /var/games/minetest/serverlist
111111

112112
# Serve up server.py at the root of the URL.
113-
WSGIScriptAlias / /var/games/minetest/master-server/server.py
113+
WSGIScriptAlias / /var/games/minetest/serverlist/server.py
114114

115115
# The name of the function that we call when we invoke server.py
116116
WSGICallableObject app
117117

118118
# These options are necessary to enable Daemon mode. Without this, you'll have strange behavior
119119
# with servers dropping off your list! You can tweak threads as needed. See mod_wsgi documentation.
120-
WSGIProcessGroup minetest-master-server
121-
WSGIDaemonProcess minetest-master-server threads=2
120+
WSGIProcessGroup minetest-serverlist
121+
WSGIDaemonProcess minetest-serverlist threads=2
122122

123123

124-
<Directory /var/games/minetest/master-server>
124+
<Directory /var/games/minetest/serverlist>
125125
Require all granted
126126
</Directory>
127127

@@ -130,6 +130,6 @@ If you wish to use Apache to host the master server, do steps 1-2, 4, above. Add
130130
License
131131
-------
132132

133-
The Minetest master server is licensed under the GNU Lesser General Public
133+
The Minetest server list code is licensed under the GNU Lesser General Public
134134
License version 2.1 or later (LGPLv2.1+). A LICENSE.txt file should have been
135135
supplied with your copy of this software containing a copy of the license.

0 commit comments

Comments
 (0)
Please sign in to comment.