Skip to content

Commit

Permalink
Merge pull request #1059 from Lan2Play/dev
Browse files Browse the repository at this point in the history
hotfix for #1057 and Dependency updates
  • Loading branch information
Apfelwurm authored Jan 6, 2025
2 parents b5d3ebc + 8c991fa commit 6040945
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 44 deletions.
12 changes: 12 additions & 0 deletions resources/docker/root/run/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -346,6 +346,18 @@ echo "set nginx tmp permissions..."
mkdir -p /var/lib/nginx/tmp/client_body
chown -R $UUID:$GUID /var/lib/nginx/tmp

# handle URL overwrite
APP_URL="${APP_URL#http://}"
APP_URL="${APP_URL#https://}"

if { [ -n "$ENABLE_HTTPS" ] && [ "$ENABLE_HTTPS" = "true" ]; } || { [ -n "$FORCE_APP_HTTPS" ] && [ "$FORCE_APP_HTTPS" = "true" ]; }; then
APP_URL="https://${APP_URL}"
else
APP_URL="http://${APP_URL}"
fi
export APP_URL


# Database Wait check
echo "---------------"
echo "WAITING FOR $DB_HOST:$DB_PORT..."
Expand Down
4 changes: 2 additions & 2 deletions src/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"type": "project",
"require": {
"php": "8.4.*",
"laravel/framework": "11.36.1",
"laravel/framework": "11.37.0",
"laravelcollective/html": "dev-6x",
"laravel/legacy-factories": "1.4.0",
"webonyx/graphql-php": "15.19.1",
Expand All @@ -46,7 +46,7 @@
"guzzlehttp/guzzle": "7.9.2",
"php-http/guzzle7-adapter": "1.1.0",
"team-reflex/challonge-php": "dev-master",
"intervention/image": "3.10.1",
"intervention/image": "3.10.2",
"intervention/image-laravel": "1.3.0",
"laravel/tinker": "2.10.0",
"scssphp/scssphp": "2.0.0",
Expand Down
73 changes: 36 additions & 37 deletions src/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions src/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"laravel-mix-purgecss": "6.0.0",
"postcss": "8.4.49",
"resolve-url-loader": "5.0.0",
"sass": "1.83.0",
"sass": "1.83.1",
"sass-loader": "16.0.4"
},
"dependencies": {
Expand Down

0 comments on commit 6040945

Please sign in to comment.