Skip to content

Commit

Permalink
dep updates/enable ssl_dyn_rec_enable
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored and Zoey2936 committed Jul 7, 2023
1 parent cd058f1 commit b60bb3a
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ RUN apk add --no-cache ca-certificates git build-base && \
sed -i "s|CAPTCHA_TEMPLATE_PATH=.*|CAPTCHA_TEMPLATE_PATH=/data/etc/crowdsec/crowdsec.conf|g" lua-mod/config_example.conf


FROM zoeyvid/nginx-quic:157
FROM zoeyvid/nginx-quic:176
COPY rootfs /
RUN apk add --no-cache ca-certificates tzdata \
lua5.1-lzlib \
Expand Down
2 changes: 1 addition & 1 deletion backend/lib/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ const generateKeys = () => {
try {
fs.writeFileSync(keysFile, JSON.stringify(keys, null, 2));
} catch (err) {
logger.error('Could not write JWT key pair to config file: ' + keysFile + ': ' . err.message);
logger.error('Could not write JWT key pair to config file: ' + keysFile + ': ' + err.message);
process.exit(1);
}
logger.info('Wrote JWT key pair to config file: ' + keysFile);
Expand Down
11 changes: 7 additions & 4 deletions backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,26 @@
"express": "4.18.2",
"express-fileupload": "1.4.0",
"gravatar": "1.8.2",
"jsonwebtoken": "9.0.0",
"jsonwebtoken": "9.0.1",
"knex": "2.4.2",
"liquidjs": "10.8.2",
"liquidjs": "10.8.3",
"lodash": "4.17.21",
"moment": "2.29.4",
"mysql": "2.18.1",
"node-rsa": "1.1.1",
"objection": "3.0.1",
"objection": "3.0.4",
"path": "0.12.7",
"signale": "1.4.0",
"sqlite3": "5.1.6",
"temp-write": "4.0.0"
},
"resolutions": {
"semver": "7.5.3"
},
"author": "Jamie Curnow <[email protected]>",
"license": "MIT",
"devDependencies": {
"eslint": "8.42.0",
"eslint": "8.44.0",
"eslint-plugin-align-assignments": "1.1.2"
}
}
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "A beautiful interface for creating Nginx endpoints",
"main": "js/index.js",
"dependencies": {
"@babel/core": "7.22.5",
"@babel/core": "7.22.8",
"babel-core": "6.26.3",
"babel-loader": "8.3.0",
"babel-preset-env": "1.7.0",
Expand Down
1 change: 1 addition & 0 deletions rootfs/usr/local/nginx/conf/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ http {
http2 on;
http3 on;
quic_retry on;
ssl_dyn_rec_enable on;

#resolver ;
fastcgi_index index.php;
Expand Down

0 comments on commit b60bb3a

Please sign in to comment.