initial commit
This commit is contained in:
commit
6b0605be62
2
.gitattributes
vendored
Normal file
2
.gitattributes
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.schem filter=lfs diff=lfs merge=lfs -text
|
17
.gitignore
vendored
Normal file
17
.gitignore
vendored
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
*/cache
|
||||||
|
*/libraries
|
||||||
|
*/logs
|
||||||
|
*/versions
|
||||||
|
*/plugins/.paper-remapped
|
||||||
|
|
||||||
|
*/world
|
||||||
|
*/world_nether
|
||||||
|
*/world_the_end
|
||||||
|
|
||||||
|
*/.console_history
|
||||||
|
|
||||||
|
*/banned-ips.json
|
||||||
|
*/banned-players.json
|
||||||
|
*/ops.json
|
||||||
|
*/whitelist.json
|
||||||
|
*/usercache.json
|
29
Dockerfile
Normal file
29
Dockerfile
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
FROM sapmachine:21-jre-headless-ubuntu
|
||||||
|
|
||||||
|
|
||||||
|
ENV WORKDIR_PATH=/workspace
|
||||||
|
ENV CONFIG_PATH=${WORKDIR_PATH}/config
|
||||||
|
ENV DATA_PATH=${WORKDIR_PATH}/data
|
||||||
|
|
||||||
|
ADD ./src ${CONFIG_PATH}
|
||||||
|
RUN mkdir ${DATA_PATH}
|
||||||
|
|
||||||
|
|
||||||
|
RUN mkdir ${DATA_PATH}/logs && \
|
||||||
|
ln -sf ${DATA_PATH}/logs ${CONFIG_PATH}
|
||||||
|
RUN touch ${DATA_PATH}/whitelist.json && \
|
||||||
|
ln -sf ${DATA_PATH}/whitelist.json ${CONFIG_PATH}
|
||||||
|
|
||||||
|
VOLUME ${DATA_PATH}
|
||||||
|
|
||||||
|
|
||||||
|
ENV MEMORY=1G
|
||||||
|
ENV PROXY_SECRET=change_me
|
||||||
|
|
||||||
|
WORKDIR ${WORKDIR_PATH}/config
|
||||||
|
|
||||||
|
EXPOSE 25565/tcp
|
||||||
|
|
||||||
|
CMD \
|
||||||
|
sed -i "s/_PROXY_SECRET_/${PROXY_SECRET}/g" server.properties && \
|
||||||
|
java -Xms${MEMORY} -Xmx${MEMORY} -jar *.jar --nogui
|
BIN
src/Limbo-0.7.10-ALPHA-1.21.1.jar
(Stored with Git LFS)
Normal file
BIN
src/Limbo-0.7.10-ALPHA-1.21.1.jar
(Stored with Git LFS)
Normal file
Binary file not shown.
14
src/permission.yml
Normal file
14
src/permission.yml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
groups:
|
||||||
|
# admin:
|
||||||
|
# - limboserver.stop
|
||||||
|
# - limboserver.kick
|
||||||
|
# - limboserver.say
|
||||||
|
# - limboserver.gamemode
|
||||||
|
default:
|
||||||
|
- limboserver.spawn
|
||||||
|
- limboserver.chat
|
||||||
|
# - limboserver.version
|
||||||
|
|
||||||
|
players:
|
||||||
|
# LOOHP:
|
||||||
|
# - admin
|
7
src/plugins/bStats/config.yml
Normal file
7
src/plugins/bStats/config.yml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
#bStats collects some data for plugin authors like how many servers are using their plugins.
|
||||||
|
#To honor their work, you should not disable it.
|
||||||
|
#This has nearly no effect on the server performance!
|
||||||
|
#Check out https://bStats.org/ to learn more :)
|
||||||
|
enabled: false
|
||||||
|
serverUuid: f7c31857-e3e6-4807-856c-4fe187149590
|
||||||
|
logFailedRequests: false
|
3
src/run.bat
Executable file
3
src/run.bat
Executable file
@ -0,0 +1,3 @@
|
|||||||
|
@echo off
|
||||||
|
java -Xms1G -Xmx1G -jar *.jar --nogui
|
||||||
|
pause
|
3
src/run.sh
Executable file
3
src/run.sh
Executable file
@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
java -Xms1G -Xmx1G -jar *.jar --nogui
|
30
src/server.properties
Normal file
30
src/server.properties
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
#For explaination of what each of the options does, please visit:
|
||||||
|
#https://github.com/LOOHP/Limbo/blob/master/src/main/resources/server.properties
|
||||||
|
#Sun Jun 08 11:50:59 EEST 2025
|
||||||
|
allow-chat=true
|
||||||
|
allow-flight=false
|
||||||
|
bungee-guard=false
|
||||||
|
bungeecord=false
|
||||||
|
default-gamemode=adventure
|
||||||
|
enforce-whitelist=false
|
||||||
|
forwarding-secrets=_PROXY_SECRET_
|
||||||
|
handshake-verbose=true
|
||||||
|
level-dimension=minecraft\:overworld
|
||||||
|
level-name=world;spawn.schem
|
||||||
|
log-player-ip-addresses=true
|
||||||
|
max-players=-1
|
||||||
|
motd={"text"\:"","extra"\:[{"text"\:"Limbo Server\!","color"\:"yellow"}]}
|
||||||
|
reduced-debug-info=true
|
||||||
|
required-resource-pack=false
|
||||||
|
resource-pack=
|
||||||
|
resource-pack-prompt={"text"\:"","extra"\:[{"text"\:"Install server resource pack\!","color"\:"yellow"}]}
|
||||||
|
resource-pack-sha1=
|
||||||
|
server-ip=0.0.0.0
|
||||||
|
server-port=25565
|
||||||
|
tab-footer=
|
||||||
|
tab-header=
|
||||||
|
ticks-per-second=5
|
||||||
|
velocity-modern=true
|
||||||
|
version=Limbo\!
|
||||||
|
view-distance=6
|
||||||
|
world-spawn=world;20.5;17;22.5;-90;0
|
BIN
src/spawn.schem
(Stored with Git LFS)
Normal file
BIN
src/spawn.schem
(Stored with Git LFS)
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user