Skip to content

Commit

Permalink
dep updates/change default mime types to download instead of plain text
Browse files Browse the repository at this point in the history
Signed-off-by: Zoey <[email protected]>
  • Loading branch information
renovate[bot] authored and Zoey2936 committed Dec 2, 2024
1 parent 9428805 commit f8a7ff0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ RUN apk upgrade --no-cache -a && \
sed -i "s|APPSEC_PROCESS_TIMEOUT=.*|APPSEC_PROCESS_TIMEOUT=10000|g" /src/crowdsec-nginx-bouncer/lua-mod/config_example.conf


FROM zoeyvid/nginx-quic:356-python
FROM zoeyvid/nginx-quic:357-python
SHELL ["/bin/ash", "-eo", "pipefail", "-c"]

COPY rootfs /
Expand All @@ -88,7 +88,7 @@ COPY --from=crowdsec /src/crowdsec-nginx-bouncer/lua-mod/templa
COPY --from=crowdsec /src/crowdsec-nginx-bouncer/lua-mod/config_example.conf /usr/local/nginx/conf/conf.d/include/crowdsec.conf
COPY --from=crowdsec /src/crowdsec-nginx-bouncer/nginx/crowdsec_nginx.conf /usr/local/nginx/conf/conf.d/include/crowdsec_nginx.conf

ARG CRS_VER=v4.8.0
ARG CRS_VER=v4.9.0
RUN apk upgrade --no-cache -a && \
apk add --no-cache ca-certificates tzdata tini \
bash nano nodejs \
Expand Down
12 changes: 6 additions & 6 deletions backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"archiver": "7.0.1",
"batchflow": "0.4.0",
"bcrypt": "5.1.1",
"better-sqlite3": "11.5.0",
"better-sqlite3": "11.6.0",
"body-parser": "2.0.2",
"compression": "1.7.5",
"express": "4.21.1",
Expand All @@ -21,7 +21,7 @@
"liquidjs": "10.19.0",
"lodash": "4.17.21",
"moment": "2.30.1",
"mysql2": "3.11.4",
"mysql2": "3.11.5",
"node-rsa": "1.1.1",
"objection": "3.1.5",
"path": "0.12.7",
Expand All @@ -31,12 +31,12 @@
"license": "MIT",
"devDependencies": {
"@apidevtools/swagger-parser": "10.1.0",
"@eslint/js": "9.15.0",
"eslint": "9.15.0",
"@eslint/js": "9.16.0",
"eslint": "9.16.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"globals": "15.12.0",
"prettier": "3.3.3"
"globals": "15.13.0",
"prettier": "3.4.1"
},
"scripts": {
"validate-schema": "node validate-schema.js"
Expand Down
2 changes: 1 addition & 1 deletion rootfs/usr/local/nginx/conf/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ http {
log_not_found off;

include mime.types;
default_type text/plain;
default_type application/octet-stream;
lua_package_path "/usr/local/nginx/lib/lua/?.lua;;";

server_tokens off;
Expand Down

0 comments on commit f8a7ff0

Please sign in to comment.