You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update README to reflect current configuration and available commands
This commit comprehensively updates the README documentation to align
with the current implementation:
- Update environment variables table with current naming and new options
- Document environment-specific PHP configuration files (dev/prod)
- Remove references to deprecated clean/clean-all commands
- Clarify that enable-ssl automatically restarts the environment
- Improve organization and descriptions throughout
These changes ensure the documentation accurately represents the current
functionality and configuration options of the environment.
| APIDOCS_PORT | API docs web interface port | 8081 | none |
151
+
| APIDOCS_PROFILE | API docs Docker profile | dev | none |
140
152
141
153
## 🔍 Debugging with Xdebug
142
154
@@ -338,9 +350,6 @@ make gen-certs
338
350
339
351
# Enable SSL in Nginx configuration
340
352
make enable-ssl
341
-
342
-
# Restart the environment
343
-
make restart
344
353
```
345
354
346
355
You can then access your site via HTTPS at [https://localhost:3000](https://localhost:3000).
@@ -541,7 +550,18 @@ You can add SQL scripts to `docker/mysql/init/` directory. These scripts will be
541
550
542
551
### Customizing PHP
543
552
544
-
To customize PHP settings, edit the `etc/php/php.ini` file.
553
+
This environment uses separate PHP configuration files for development and production:
554
+
555
+
-`etc/php/php.dev.ini`: Development configuration with debug features enabled
556
+
-`etc/php/php.prod.ini`: Production configuration optimized for performance and security
557
+
558
+
You can customize these files to adjust PHP settings for each environment. The appropriate file is selected based on the `PHP_INI` environment variable.
559
+
560
+
After changing any settings, restart the containers:
0 commit comments