compress
This commit is contained in:
parent
16920caf9c
commit
8e0949c66f
2 changed files with 8 additions and 0 deletions
|
@ -5,9 +5,11 @@
|
|||
import * as fs from 'fs';
|
||||
import * as http from 'http';
|
||||
import * as http2 from 'http2';
|
||||
import * as zlib from 'zlib';
|
||||
import * as Koa from 'koa';
|
||||
import * as Router from 'koa-router';
|
||||
import * as mount from 'koa-mount';
|
||||
import * as compress from 'koa-compress';
|
||||
|
||||
import activityPub from './activitypub';
|
||||
import webFinger from './webfinger';
|
||||
|
@ -17,6 +19,10 @@ import config from '../config';
|
|||
const app = new Koa();
|
||||
app.proxy = true;
|
||||
|
||||
app.use(compress({
|
||||
flush: zlib.constants.Z_SYNC_FLUSH
|
||||
}));
|
||||
|
||||
// HSTS
|
||||
// 6months (15552000sec)
|
||||
if (config.url.startsWith('https')) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue