-
Notifications
You must be signed in to change notification settings - Fork 1
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 #90 from mbaraa/dev
release v0.1.52
- Loading branch information
Showing
3 changed files
with
69 additions
and
40 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
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 |
---|---|---|
|
@@ -36,6 +36,7 @@ templ PlayerSticky() { | |
id="audio-player" | ||
controls | ||
preload="none" | ||
muted | ||
></audio> | ||
/// | ||
<style> | ||
|
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,23 @@ | ||
server { | ||
listen 80; | ||
listen [::]:80; | ||
server_name dankmuzikk.com; | ||
|
||
location ~ ^/(.*)$ { | ||
set $upstream http://127.0.0.1:20251; | ||
proxy_read_timeout 180; | ||
proxy_connect_timeout 180; | ||
proxy_send_timeout 180; | ||
# required headers for safari :) | ||
proxy_set_header Connection "keep-alive"; | ||
proxy_set_header Range "bytes=0-"; | ||
proxy_set_header Icy-Metadata "0"; | ||
proxy_pass_request_headers on; | ||
proxy_pass $upstream/$1$is_args$args; | ||
} | ||
|
||
location / { | ||
proxy_pass http://127.0.0.1:20251; | ||
} | ||
} | ||
|