Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 24 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,29 @@ php -S localhost:8080 -t public
./yii serve
```

**Access your application**
**Start Apache or Nginx server**

```bash
# For Apache
docker-compose up -d

# For Nginx
docker-compose -f docker-compose.nginx.yml up -d
```

### Access your application

After starting the server, you can access your application in your web browser.

```bash
# For built-in PHP server
http://localhost:8080/

# For Apache
http://localhost:8080/

# For Nginx
http://localhost:8081/
```

### Basic usage
Expand All @@ -112,6 +131,10 @@ root/
│ ├── console/ Console configuration
│ ├── web/ Web configuration
│ └── messages.php Translation config
├── docker/ Docker configuration files
│ ├── apache/ Apache configuration
│ ├── nginx/ Nginx configuration
│ └── php/ PHP configuration
├── src/
│ ├── framework/ Framework assets & resources
│ │ ├── asset/ Asset bundles
Expand Down