Skip to content

Commit 619cee5

Browse files
authored
docs: clarify that disabling RCON disables other features (#2607)
1 parent b73fb88 commit 619cee5

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

docs/configuration/server-properties.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -187,9 +187,13 @@ The server icon which has been set doesn't get overridden by default. It can be
187187

188188
RCON is **enabled by default** to allow for graceful shut down the server and coordination of save state during backups. RCON can be disabled by setting `ENABLE_RCON` to "false".
189189

190-
The default password is randomly generated if `RCON_PASSWORD` has not been set.
190+
!!! warning
191+
192+
Disabling RCON will remove and limit some features, such as interactive and color console support.
193+
194+
The default password is randomly generated on each startup; however, a specific one can be set with `RCON_PASSWORD`.
191195

192-
**DO NOT MAP THE RCON PORT EXTERNALLY** unless you aware of all the consequences and have set a **secure password** with `RCON_PASSWORD`.
196+
**DO NOT MAP THE RCON PORT EXTERNALLY** unless you are aware of all the consequences and have set a **secure password** with `RCON_PASSWORD`.
193197

194198
!!! info
195199

docs/variables.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@ alternatively, you can mount: <code>/etc/localtime:/etc/localtime:ro
540540
<tbody>
541541
<tr>
542542
<td><code>ENABLE_RCON</code></td>
543-
<td>Should RCON be enabled</td>
543+
<td>Enable/disable RCON support; however, be aware that disabling RCON will remove and limit some features, such as interactive and color console support.</td>
544544
<td><code>true</code></td>
545545
<td>⬜️</td>
546546
</tr>

examples/jline/docker-compose.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
services:
2+
mc:
3+
image: itzg/minecraft-server
4+
tty: true
5+
stdin_open: true
6+
environment:
7+
EULA: true
8+
TYPE: FABRIC
9+
MODRINTH_PROJECTS: |
10+
jline4mcdsrv
11+
volumes:
12+
- mc-data:/data
13+
volumes:
14+
mc-data: {}

0 commit comments

Comments
 (0)