-
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.
feat(conf): add nginx configuration file
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 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 |
---|---|---|
@@ -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; | ||
} | ||
} | ||
|