My api uses auth to grant access to endpoints to my main app with a basic token.
app.use(auth.connect(basic))
Hence, all endpoint use auth.
I need to write files on the api server that are publicly available. How can I make it so the URL of the files can be accessed without auth?