🛜 Host

This page shows all the available host types

None

type: none

Self

type: self
ip: localhost
port: 8163
protocol: http
deny-non-minecraft-request: true
one-time-token: true
rate-limit:
  max-requests: 5
  reset-interval: 20 # seconds

External

type: external
url: ""
uuid: "" # Optional
sha1: "" # Optional

Host your resource pack on an external server. This eliminates bandwidth consumption on your own server.

Typically, after uploading your resource pack to a hosting platform, it will provide you with:

  • URL

  • UUID (Optional)

  • SHA1 (Optional)

Simply fill these three fields with the corresponding values.

LobFile

type: lobfile
use-environment-variables: false
api-key: "xxx"

Manage your resource packs via Lobfile.

When regenerating resource packs, the plugin will automatically upload a copy to Lobfile. Compared to ExternalHost, this eliminates manual uploads.

(Note: An API-KEY is required. Visit lobfile for details.)

OneDrive

type: onedrive
use-environment-variables: false
client-id: ""
client-secret: ""
refresh-token: ""
upload-path: "server_resource_pack.zip"

Dropbox

type: dropbox
use-environment-variables: false
app-key: ""
app-secret: ""
refresh-token: ""
upload-path: "server_resource_pack.zip"

Alist

type: alist
use-environment-variables: false
disable-upload: false
api-url: ""
username: ""
password: ""
file-password: ""
otp-code: ""
upload-path: "server_resource_pack.zip"

Gitlab

type: gitlab
use-environment-variables: false
gitlab-url: ""
access-token: ""
project-id: ""

s3

type: s3
endpoint: ""
bucket: ""
access-key-id: ""
access-key-secret: ""
protocol: "https"
path-style: false
region: "auto"
upload-path: "server_resource_pack.zip"
use-legacy-signature: true
validity: 10
cdn:
  domain: ""
  protocol: "https"

When using S3, the plugin enhances security by generating unique & time-limited & one-time download link for each player. This prevents attackers from obtaining fixed URLs to launch attacks. Additionally, the plugin automatically handles resource pack uploads during updates.

Last updated