Skip to content

Commit

Permalink
close #853 by fixing openssl regex/dep updates
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored and Zoey2936 committed May 31, 2024
1 parent 3eaf932 commit 68768e2
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Caddy.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM caddy:2.7.6 as caddy
FROM caddy:2.8.1 as caddy

FROM alpine:3.20.0
RUN apk add --no-cache ca-certificates tzdata
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ RUN apk upgrade --no-cache -a && \
FROM zoeyvid/nginx-quic:287-python
SHELL ["/bin/ash", "-eo", "pipefail", "-c"]

ARG CRS_VER=v4.2.0
ARG CRS_VER=v4.3.0

COPY rootfs /
COPY --from=zoeyvid/certbot-docker:35 /usr/local /usr/local
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ Immediately after logging in with this default user you will be asked to modify
### prerun scripts (EXPERT option) - if you don't know what this is, ignore it
run order: entrypoint.sh (prerun scripts) => start.sh => launch.sh <br>
if you need to run scripts before NPMplus launches put them under: `/opt/npm/etc/prerun/*.sh` (please add `#!/bin/sh` / `#!/bin/bash` to the top of the script) <br>
you need to create this folder yourself - **NOTE:** I won't help you creating thoose patches/scripts if you need them you also need to know how to create them
you need to create this folder yourself - **NOTE:** I won't help you creating those patches/scripts if you need them you also need to know how to create them

## Contributing
All are welcome to create pull requests for this project, against the `develop` branch.
Expand Down
2 changes: 1 addition & 1 deletion backend/internal/certificate.js
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,7 @@ const internalCertificate = {
.exec('openssl x509 -in ' + certificate_file + ' -subject -noout')
.then((result) => {
// subject=CN = something.example.com
const regex = /(?:subject=)?[^=]+=\s+(\S+)/gim;
const regex = /(?:subject=)?[^=]+=\s*(\S+)/gim;
const match = regex.exec(result);

if (typeof match[1] === 'undefined') {
Expand Down
6 changes: 3 additions & 3 deletions backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"gravatar": "1.8.2",
"jsonwebtoken": "9.0.2",
"knex": "3.1.0",
"liquidjs": "10.13.0",
"liquidjs": "10.13.1",
"lodash": "4.17.21",
"moment": "2.30.1",
"mysql": "2.18.1",
Expand All @@ -29,8 +29,8 @@
"author": "Jamie Curnow <[email protected]> and ZoeyVid <[email protected]>",
"license": "MIT",
"devDependencies": {
"@eslint/js": "9.3.0",
"eslint": "9.3.0",
"@eslint/js": "9.4.0",
"eslint": "9.4.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"globals": "15.3.0",
Expand Down
4 changes: 2 additions & 2 deletions 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.24.5",
"@babel/core": "7.24.6",
"babel-core": "6.26.3",
"babel-loader": "8.3.0",
"babel-preset-env": "1.7.0",
Expand All @@ -28,7 +28,7 @@
"mini-css-extract-plugin": "1.6.2",
"moment": "2.30.1",
"node-sass": "7.0.3",
"nodemon": "3.1.0",
"nodemon": "3.1.2",
"numeral": "2.0.6",
"sass-loader": "10.5.2",
"style-loader": "4.0.0",
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 @@ -57,7 +57,7 @@ http {

resolver local=on valid=10s ipv6=on;
fastcgi_index index.php;
index index.php index.html;
index index.html index.php;

error_page 404 =307 $scheme://$host:$server_port;
error_page 497 =301 https://$host:$server_port$request_uri;
Expand Down

0 comments on commit 68768e2

Please sign in to comment.