diff --git a/CHANGELOG.md b/CHANGELOG.md index 91af3f59..78b29442 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 (no unreleased versions) +## [3.1.10] - 2021-12-11 + +### Fixed +- Default PHP Version +- No bot meta in default pages + ## [3.1.9] - 2021-12-11 ### Fixed diff --git a/database/migrations/2019_05_02_000000_create_servers_table.php b/database/migrations/2019_05_02_000000_create_servers_table.php index 618f1d05..e831d6b4 100644 --- a/database/migrations/2019_05_02_000000_create_servers_table.php +++ b/database/migrations/2019_05_02_000000_create_servers_table.php @@ -22,7 +22,7 @@ public function up() $table->string('database'); $table->string('provider')->nullable(); $table->string('location')->nullable(); - $table->string('php')->default('8.1'); + $table->string('php')->default(config('cipi.default_php')); $table->text('github_key')->nullable(); $table->text('cron')->nullable(); $table->boolean('default')->default(false); diff --git a/database/migrations/2019_05_03_000000_create_sites_table.php b/database/migrations/2019_05_03_000000_create_sites_table.php index 4e821dc6..d7dbde7c 100644 --- a/database/migrations/2019_05_03_000000_create_sites_table.php +++ b/database/migrations/2019_05_03_000000_create_sites_table.php @@ -24,7 +24,7 @@ public function up() $table->string('basepath')->nullable()->default('/public'); $table->string('repository')->nullable(); $table->string('branch')->nullable(); - $table->string('php')->default('8.1'); + $table->string('php')->default(config('cipi.default_php')); $table->text('supervisor')->nullable(); $table->text('nginx')->nullable(); $table->text('deploy')->nullable(); diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php index e866419f..1e8f1c7d 100644 --- a/resources/views/welcome.blade.php +++ b/resources/views/welcome.blade.php @@ -3,6 +3,8 @@ + + {{ config('cipi.name') }} diff --git a/storage/app/cipi/newsite.sh b/storage/app/cipi/newsite.sh index 530447b7..a4fa5a39 100644 --- a/storage/app/cipi/newsite.sh +++ b/storage/app/cipi/newsite.sh @@ -60,7 +60,7 @@ else fi sudo touch $WELCOME sudo cat > "$WELCOME" < Coming Soon

Coming Soon

+ Coming Soon

Coming Soon

EOF NGINX=/etc/nginx/sites-available/$USER_NAME.conf diff --git a/storage/app/cipi/version.md b/storage/app/cipi/version.md index 7148b0a9..c7a24988 100644 --- a/storage/app/cipi/version.md +++ b/storage/app/cipi/version.md @@ -1 +1 @@ -3.1.9 +3.1.10 diff --git a/utility/zero-page/index.php b/utility/zero-page/index.php index 608fe30d..3d00e7dd 100644 --- a/utility/zero-page/index.php +++ b/utility/zero-page/index.php @@ -29,6 +29,8 @@ <?php echo substr($quotes[$randquote]['quote'], 0, 21); ?>... + +