We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
proxy_pass
1 parent a61665f commit a9dc522Copy full SHA for a9dc522
examples/nginx.conf
@@ -53,6 +53,9 @@ server {
53
54
location / {
55
# Forward incoming requests to local tusd instance
56
+ # Note that the proxy's URL does not include a path/URI and not even a trailing slash, so
57
+ # that Nginx passes the unmodified request URL to tusd.
58
+ # https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_pass
59
proxy_pass http://localhost:8080;
60
61
# Disable request and response buffering
0 commit comments