Skip to content

Commit

Permalink
feat(conf): add nginx configuration file
Browse files Browse the repository at this point in the history
  • Loading branch information
mbaraa committed Jul 4, 2024
1 parent 3bdafaa commit d1c4d7a
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions nginx/dankmuzikk.conf
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;
}
}

0 comments on commit d1c4d7a

Please sign in to comment.