mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 11:29:46 +00:00
Fix http logger
This commit is contained in:
parent
f62662b89f
commit
952b3f0d66
1 changed files with 6 additions and 6 deletions
12
src/app.ts
12
src/app.ts
|
|
@ -93,12 +93,12 @@ if (Conf.sentryDsn) {
|
||||||
|
|
||||||
const debug = Debug('ditto:http');
|
const debug = Debug('ditto:http');
|
||||||
|
|
||||||
app.use('/api', logger(debug));
|
app.use('/api/*', logger(debug));
|
||||||
app.use('/relay', logger(debug));
|
app.use('/relay/*', logger(debug));
|
||||||
app.use('/.well-known', logger(debug));
|
app.use('/.well-known/*', logger(debug));
|
||||||
app.use('/users', logger(debug));
|
app.use('/users/*', logger(debug));
|
||||||
app.use('/nodeinfo', logger(debug));
|
app.use('/nodeinfo/*', logger(debug));
|
||||||
app.use('/oauth', logger(debug));
|
app.use('/oauth/*', logger(debug));
|
||||||
|
|
||||||
app.get('/api/v1/streaming', streamingController);
|
app.get('/api/v1/streaming', streamingController);
|
||||||
app.get('/api/v1/streaming/', streamingController);
|
app.get('/api/v1/streaming/', streamingController);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue