Skip to content

Commit 50f02f7

Browse files
committed
clean up some typos in README
1 parent 0cdf76d commit 50f02f7

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

README.md

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
# Minecraft Server
1+
# Minecraft Multi Server
22

3-
This project defines a template systemd service unit file for hosting several minecraft servers.
4-
Since once you have one you are going to want another ;)
3+
This project defines a template systemd service unit file for hosting several minecraft servers via docker.
4+
Since once you have one, you are going to want another ;)
55

66
# Install
77

88
This system runs the minecraft server in a docker container as such you must first install docker.
99

10-
Run `make install` as root and the files will be copied to the appropriate locations.
10+
Run `make install` as root and the systemd units files and `minecraftctl` script will be copied to the appropriate locations.
1111

1212
You should also create a minecraft user to own the server files.
1313

@@ -23,7 +23,7 @@ You can find an AUR package [here](https://aur.archlinux.org/packages/minecraft-
2323

2424
# Usage
2525

26-
With this project installed you can run multple different minecraft worlds on the same host.
26+
With this project installed you can run multiple different minecraft worlds on the same host.
2727
Each is given a name and can be configured in an `/etc/minecraft/<name>` file.
2828

2929
## EULA
@@ -69,8 +69,8 @@ EPHEMERAL=true
6969
WORLD=http://minecraft.example.com/myworld.zip
7070
```
7171

72-
Now everytime the server is started is will download a fresh copy of the world and launch it.
73-
Without the `EPHEMERAL` var the world will only be downloaded to first time.
72+
Now every time the server is started, it will download a fresh copy of the world and launch it.
73+
Without the `EPHEMERAL` var the world will only be downloaded the first time.
7474

7575
## Backups
7676

@@ -83,19 +83,20 @@ sudo systemctl enable [email protected]
8383
sudo systemctl start [email protected]
8484
```
8585

86-
this will enable weekly backups of the `survival` server.
87-
Backups are stored in the default `$DATA_DIR/$BACKUP_DIR` which is `/srv/minecraft/<name>/backups` if you want to copy them offsite you will need to manage that yourself.
86+
This will enable weekly backups of the `survival` server.
87+
Backups are stored in `$DATA_DIR/$BACKUP_DIR` which is `/srv/minecraft/<name>/backups` by default.
88+
If you want to copy them off-site you will need to manage that yourself.
8889

8990

90-
## Further custimization
91+
## Further customization
9192

9293
Not everything that is possible to customize has been mentioned here.
9394
Take a look at the `minecraftctl.sh` script as it is written to be extensible.
9495

9596
# Portability
9697

9798
These scripts work on my host ;) (arch linux).
98-
I have not tested them anywhere else, if you run into a bug please file on issue here on github or better yet submit a PR.
99+
I have not tested them anywhere else, if you run into a bug please file an issue here on github or better yet submit a PR.
99100

100101
# Thanks
101102

0 commit comments

Comments
 (0)