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
| Web Server type | WEB_SERVER |`nginx`, `apache`|`nginx`|
286
-
| Database type | DB |`mariadb`, `mysql`, `mongodb`|`mysql`|
287
-
| Cache server type | CACHE_SERVER |`redis`, `memcached`|`redis`|
288
-
| Projects Path | PROJECTS_PATH | any |`/your/projects/directory/path`|
289
-
| HTTP web port | WEB_PORT | any |`80`|
290
-
| HTTPS web port | WEBSSL_PORT | any |`443`|
291
-
| MailDev port | MAILDEV_PORT | any |`1080`|
292
-
| PHPMyAdmin port | PHPMYADMIN_PORT | any |`9090`|
293
-
| MongoExpress port | MONGOEXPRESS_PORT | any |`8081`|
294
-
| Cache server port | CACHE_PORT | any |`6380`|
295
-
296
-
If you access to the url `http://envdev.localhost` a page summarizes all projets and propose access link to PHPMyAdmin, MailDev and PHPInfo.
297
-
298
-
### Nginx configuration
299
-
300
-
Nginx configuration file is available at `/conf/nginx/nginx.conf` to custom the web server configuration.
301
-
302
-
### Apache configuration
303
-
304
-
Apache configuration file is available at `/conf/apache/httpd.conf` to custom the web server configuration.
305
-
306
-
### PHP configuration
307
-
308
-
A custom php.ini file is available at `/conf/php/php.ini`. The default PHP configuration is with these options:
309
-
310
-
```conf
311
-
date.timezone = Europe/Paris
312
-
display_errors=1
313
-
error_reporting=E_ALL
314
-
log_errors = on
315
-
error_log = /var/log/php_errors.log
316
-
memory_limit = 256M
317
-
upload_max_filesize = 200M
318
-
post_max_size = 40M
319
-
```
29
+
## Documentation
320
30
321
-
### Projects configuration
31
+
All documentation is available in [docs directory](./docs)
322
32
323
-
To simplify projects source sharing between containers, you can install source projects in the path define in `.env` with variable `PROJECTS_PATH`.
33
+
## Troubleshooting
324
34
325
-
Naturally, you can change the default path. In this case, the default summary will not be available.
35
+
2.3 version of EnvDev, has add new environment constants in `.env` file. If you use an older version, this file must be update with all constants presents in `.env.dist`.
0 commit comments