You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
927 B
28 lines
927 B
# Enter your gateway IP (your host IP under from docker containers) - that need for correctly worked xdebug from cli
|
|
# For detect that IP use: docker network inspect structure_default | grep Gateway | xargs | cut -d ' ' -f2
|
|
# For UFW allowing ports on the host system: ufw allow to 172.18.0.1 port 9000,9003
|
|
DOCKER_HOST_IP=172.18.0.1
|
|
PROJECTS_DIR=/home/youruser/PhpstormProjects
|
|
|
|
### Common ###############################################
|
|
CUSTOM_TZ=Europe/Moscow
|
|
CUSTOM_LOCALE=ru_RU.UTF-8
|
|
|
|
### WORKSPACE #############################################
|
|
|
|
### WORKSPACE #############################################
|
|
WORKSPACE_PUID=1000
|
|
WORKSPACE_PGID=1000
|
|
|
|
WORKSPACE_INSTALL_YADM=true
|
|
WORKSPACE_INSTALL_FINE_UTILS=true
|
|
|
|
WORKSPACE_PHP_OPT_MEMORY_LIMIT=-1
|
|
|
|
### PHP-FPM #############################################
|
|
PHP_OPT_MEMORY_LIMIT=512M
|
|
|
|
PHP_OPT_POST_MAX_SIZE=800M
|
|
PHP_OPT_UPLOAD_MAX_FILESIZE=200M
|
|
|
|
PHP_OPT_MAX_EXECUTION_TIME=600
|