-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from BBN-Holding/gang
Gang
- Loading branch information
Showing
69 changed files
with
1,500 additions
and
1,229 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
.sass-cache | ||
*.css.map | ||
.DS_Store | ||
dist | ||
deno.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
FROM nginx | ||
COPY dist /usr/share/nginx/html | ||
COPY dist /usr/share/nginx/html | ||
COPY default /etc/nginx/sites-available/default |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{ | ||
"/minecraft/vanilla/": { | ||
"name": "Minecraft Vanilla", | ||
"docker_image": "itzg/minecraft-server", | ||
"version_api": "https://launchermeta.mojang.com/mc/game/version_manifest.json" | ||
}, | ||
"/minecraft/default/": { | ||
"name": "Minecraft", | ||
"docker_image": "itzg/minecraft-server", | ||
"version_api": "https://api.purpurmc.org/v2/purpur" | ||
}, | ||
"/minecraft/paper/": { | ||
"name": "Minecraft (Paper)", | ||
"docker_image": "itzg/minecraft-server", | ||
"version_api": "https://papermc.io/api/v2/projects/paper" | ||
}, | ||
"/minecraft/modded/fabric/": { | ||
"name": "Minecraft Fabric", | ||
"docker_image": "itzg/minecraft-server", | ||
"environment": { | ||
"TYPE": "FABRIC" | ||
}, | ||
"version_api": "https://meta.fabricmc.net/v2/versions/game" | ||
}, | ||
"/minecraft/modded/forge/": { | ||
"name": "Minecraft Forge", | ||
"docker_image": "itzg/minecraft-server", | ||
"environment": { | ||
"TYPE": "FORGE" | ||
}, | ||
"version_api": "https://files.minecraftforge.net/net/minecraftforge/forge/promotions_slim.json" | ||
}, | ||
"/minecraft/bedrock/": { | ||
"name": "Minecraft Bedrock", | ||
"docker_image": "itzg/minecraft-bedrock-server" | ||
}, | ||
"/minecraft/pocketmine/": { | ||
"name": "Pocketmine MP", | ||
"docker_image": "pmmp/pocketmine-mp" | ||
}, | ||
"/minecraft/legacy/magma/": { | ||
"name": "Minecraft Magma", | ||
"egg": 30 | ||
}, | ||
"/minecraft/legacy/nukkit/": { | ||
"name": "Minecraft Nukkit", | ||
"egg": 33 | ||
}, | ||
"/minecraft/legacy/pgf/": { | ||
"name": "Minecraft Purpur Geyser Floodgate", | ||
"egg": 34 | ||
}, | ||
"/minecraft/legacy/purpur/": { | ||
"name": "Minecraft Purpur", | ||
"egg": 20 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
server { | ||
listen 80; | ||
listen [::]:80; | ||
server_name localhost; | ||
|
||
error_page 500 502 503 504 /50x.html; | ||
|
||
location / { | ||
try_files $uri $uri.html $uri/index.html =404; | ||
root /usr/share/nginx/html; | ||
index index.html index.htm; | ||
} | ||
|
||
location = /50x.html { | ||
root /usr/share/nginx/html; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
server { | ||
listen 80; | ||
listen [::]:80; | ||
server_name localhost; | ||
|
||
location / { | ||
try_files $uri $uri.html $uri/index.html =404; | ||
root /usr/share/nginx/html; | ||
index index.html index.htm; | ||
} | ||
|
||
error_page 500 502 503 504 /50x.html; | ||
location = /50x.html { | ||
root /usr/share/nginx/html; | ||
} | ||
} |
Oops, something went wrong.