diff options
author | Sacha Chua <sacha@sachachua.com> | 2022-10-23 08:32:19 -0400 |
---|---|---|
committer | Sacha Chua <sacha@sachachua.com> | 2022-10-23 08:32:19 -0400 |
commit | 8637995c0f20672553c192907a36d3c8519b61d4 (patch) | |
tree | 7b794998d2b125d719c939c98f1aeeeef0ebdbf9 /roles/stream/templates | |
parent | 8929a1ce7bd8afb9da6a34443b71c2816c40c680 (diff) | |
download | emacsconf-ansible-8637995c0f20672553c192907a36d3c8519b61d4.tar.xz emacsconf-ansible-8637995c0f20672553c192907a36d3c8519b61d4.zip |
Stream test
Diffstat (limited to 'roles/stream/templates')
-rw-r--r-- | roles/stream/templates/emacsconf.nginx.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/stream/templates/emacsconf.nginx.conf b/roles/stream/templates/emacsconf.nginx.conf index 235a661..57570e9 100644 --- a/roles/stream/templates/emacsconf.nginx.conf +++ b/roles/stream/templates/emacsconf.nginx.conf @@ -1,8 +1,8 @@ -location /emacsconf { +location /emacsconf/ { try_files $uri $uri/ @emacsconf_upstream; } location @emacsconf_upstream { - proxy_pass http://localhost:{{ icecast_port }}; + proxy_pass http://localhost:{{ icecast_port }}/emacsconf/; proxy_http_version 1.1; proxy_buffering off; proxy_request_buffering off; |