Skip to content

Commit 36a39ec

Browse files
fix(app): Update section title to Available deployment options and add descriptions for server stacks in README.md. (#171)
1 parent a9428a6 commit 36a39ec

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
- Bug #159: Remove redundant `Basic usage` section from `README.md` (@terabytesoftw)
1212
- Bug #162: Update `README.md` to reorganize `Package information` and add latest stable version badge (@terabytesoftw)
1313
- Bug #167: Update section title `Available stacks` and improve badge formatting in `README.md` (@terabytesoftw)
14+
- Bug #171: Update section title to `Available deployment options`, group stacks by type, and add Apache entry in `README.md` (@terabytesoftw)
1415

1516
## 0.1.0 August 31, 2025
1617

README.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,22 @@ A modern, Bootstrap 5-powered Yii2 application template designed for rapid web-a
4040
-**Modern Bootstrap 5 UI** - Responsive, mobile-first design with latest Bootstrap components.
4141
-**Testing Ready** - Codeception test suite with examples for functional and unit testing.
4242

43-
## Available worker mode stacks
43+
## Available deployment options
44+
45+
### Traditional Web Servers
46+
47+
Classic request-per-process model; simple, widely supported (for example, Apache).
48+
49+
[![Apache](https://img.shields.io/badge/apache-%23D42029.svg?style=for-the-badge&logo=apache&logoColor=white)](https://github.com/yii2-extensions/app-basic/tree/apache)
50+
51+
### High-Performance Worker Mode
52+
53+
Long-running PHP workers for higher throughput and lower latency.
4454

4555
[![FrankenPHP](https://img.shields.io/badge/FrankenPHP-777BB4?style=for-the-badge&logo=php&logoColor=white)](https://github.com/yii2-extensions/app-basic/tree/franken-php)
46-
[![RoadRunner](https://img.shields.io/badge/RoadRunner-%23FF6B35.svg?style=for-the-badge&logo=rocket&logoColor=white)](https://github.com/yii2-extensions/app-basic/tree/road-runner)
56+
[![RoadRunner](https://img.shields.io/badge/RoadRunner-%23FF6B35.svg?style=for-the-badge&logo=data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyIDJMMjIgMTJMMTIgMjJMMiAxMkwxMiAyWiIgZmlsbD0iI0ZGRkZGRiIvPgo8cGF0aCBkPSJNOCAyTDE2IDEwTDggMThaIiBmaWxsPSIjRkY2QjM1Ii8+CjxwYXRoIGQ9Ik0xNiA2TDIwIDEwTDE2IDE0WiIgZmlsbD0iI0ZGNkIzNSIvPgo8L3N2Zz4K&logoColor=white)](https://github.com/yii2-extensions/app-basic/tree/road-runner)
4757

48-
For setup instructions, see README in each branch.
58+
> For setup instructions, see `README.md` in each branch.
4959
5060
## How it works
5161

config/web/modules.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
'debug' => [
77
'class' => yii\debug\Module::class,
88
// uncomment the following to add your IP if you aren't connecting from localhost.
9-
//'allowedIPs' => ['127.0.0.1', '::1'],
9+
'allowedIPs' => ['*'], // allow all IPs for development purposes only, do not use in production
1010
],
1111
'gii' => [
1212
'class' => yii\gii\Module::class,
1313
// uncomment the following to add your IP if you aren't connecting from localhost.
14-
//'allowedIPs' => ['127.0.0.1', '::1'],
14+
'allowedIPs' => ['*'], // allow all IPs for development purposes only, do not use in production
1515
],
1616
];
1717

0 commit comments

Comments
 (0)