https://github.com/devoxin/obsidian
Obsidian extends Lavaplayer's functionality.
https://github.com/devoxin/obsidian
Last synced: 4 months ago
JSON representation
Obsidian extends Lavaplayer's functionality.
- Host: GitHub
- URL: https://github.com/devoxin/obsidian
- Owner: devoxin
- License: gpl-3.0
- Created: 2024-05-08T20:09:26.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-15T19:41:40.000Z (over 1 year ago)
- Last Synced: 2025-03-27T00:54:13.692Z (about 1 year ago)
- Language: Java
- Size: 115 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Obsidian
Obsidian extends Lavaplayer's functionality.
### Using in Lavalink:
```yaml
lavalink:
plugins:
- dependency: "com.github.devoxin:obsidian:"
repository: "https://jitpack.io"
```
### Basic configuration:
Disable the built-in HTTP source manager within Lavalink first.
```yaml
lavalink:
server:
sources:
http: false
```
```yaml
plugins:
obsidian:
sources:
http:
enabled: true
followRedirects: true # set to false if redirects should not be permitted
blockAll: false # Setting to true will put the hosts list into 'allowlist' mode, where only domains
# permitted with 'allow' will work.
proxyAll: true # Proxies all domains by default (if a proxy is configured).
# You may configure a proxy using Lavalink's own `httpConfig` block.
hosts:
google: 'allow' # allow all requests to google, regardless of subdomain and TLD
google.com: 'block' # block google.com specifically. All other Google combinations are permitted.
proxy:
example.com: 'bypass' # Requests to this site will not be proxied, regardless of the "proxyAll" setting.
some.example.com: 'proxy' # Can proxy specific subdomains, TLDs or the entire site regardless of TLD.
sketchy.site: 'proxy' # Requests to this site WILL be proxied, regardless of the "proxyAll" setting.
google: 'bypass' # All requests to google, regardless of subdomain or TLD will not be proxied.
```