Deployed 0813eb1 with MkDocs version: 1.1.2

This commit is contained in:
2021-03-16 16:56:50 +00:00
parent a65bc2ab16
commit 621994d06e
6 changed files with 24 additions and 10 deletions

View File

@ -406,6 +406,10 @@ if (!res.first)
return 1;
}
// Per message deflate connection is enabled by default. It can be disabled
// which might be helpful when running on low power devices such as a Rasbery Pi
server.disablePerMessageDeflate();
// Run the server in the background. Server can be stoped by calling server.stop()
server.start();
@ -468,6 +472,10 @@ if (!res.first)
return 1;
}
// Per message deflate connection is enabled by default. It can be disabled
// which might be helpful when running on low power devices such as a Rasbery Pi
server.disablePerMessageDeflate();
// Run the server in the background. Server can be stoped by calling server.stop()
server.start();