Pavel Prishchepa

Results 15 comments of Pavel Prishchepa
trafficstars

@webfordreams HTTPS isn't configurable yet, but you can override default Nginx config via Docker volumes.

Yes HTTPS support is must-have feature and we plan to implement it. We plan to integrate [traefik](https://github.com/containous/traefik) - reverse proxy tool. It'll allow to terminate HTTPS and access services via...

@alesrebec > If I set the port in nginx container config to 443 I get "Bad Gateway". You should revert it to 80. Then try to add the following one...

@alesrebec ok, but looks like a dirty hack :) usually `$_SERVER['HTTPS'] = 'on';` is enough.

Hi, you may try to play with env vars with a default value of 60 in [PHP container](https://github.com/wodby/php): - PHP_MAX_INPUT_TIME - PHP_DEFAULT_SOCKET_TIMEOUT

@forethoughtde try [to debug](https://wodby.com/docs/stacks/drupal/containers/#xdebug-troubleshooting) xdebug connection. Also, you may try this config: ``` PHP_XDEBUG=1 PHP_XDEBUG_DEFAULT_ENABLE=1 PHP_XDEBUG_REMOTE_HOST=host.docker.internal PHP_IDE_CONFIG=serverName=my-ide # Should be the same as in your IDE. PHP_XDEBUG_REMOTE_CONNECT_BACK=0 ``` In this...

@Vacilando what's in your docker-compose.yaml?

@VladSavitsky as I see adding `PHP_XDEBUG_REMOTE_LOG: /proc/self/fd/2` works as expected and you may get Xdebug logs from the output of PHP container. Could you confirm that the pre-creating of `/tmp/xdebug.log`...

You may enable `PHP_XDEBUG_REMOTE_LOG` when debugging Xdebug and then disable it. In this case, the mixing of application and Xdebug logs in a container output will not be a big...

The setting `PHP_XDEBUG_REMOTE_LOG` is empty by default. Once you need debugging Xdebug you may add this environment variable `PHP_XDEBUG_REMOTE_LOG: /proc/self/fd/2` `/proc/self/fd/2` value means that `Xdebug` logs will be written to...