David Gomez
David Gomez
Hi @R-omk Thanks for reporting it. Would you like to contribute by sending a PR to properly handle it? Regards
Hi @reduakt , Thanks for your feedback. I have created a task so the team can review it. Unfortunately, I cannot provide you with an ETA.
Hi @andrew-pickin-epi , You can disable `mpm_prefork` and enable `mpm_worker` by editing `/opt/bitnami/apache/conf/httpd.conf` as below: ``` ... #LoadModule mpm_event_module modules/mod_mpm_event.so #LoadModule mpm_prefork_module modules/mod_mpm_prefork.so LoadModule mpm_worker_module modules/mod_mpm_worker.so LoadModule authn_file_module modules/mod_authn_file.so ......
Thanks for reporting this issue. Would you like to contribute by creating a PR to solve the issue? The Bitnami team will be happy to review it and provide feedback....
Hi @fatjester , You are right. We have created a task to work on a fix for it.
Hello @sorscode , We have just released version 4.0.1-1. Regards
Hi @claireleray-poclain , The error is due to the `configuration` part. Try with this values.yaml: ``` auth: username: user password: password service: type: LoadBalancer replicaCount: 1 image: debug: true ingress:...
As explained [here](https://github.com/bitnami/charts/tree/master/bitnami/rabbitmq#common-parameters), you should use: ``` extraConfiguration: |- ## Delivery acknowledgment timeout set to 2 hours consumer_timeout = 7200000 ```
Hello @dominikkrulak , The problem here is that you are mounting the `redis.conf` file: ``` # Redis configuration files - type: bind source: ./docker-images/redis/7.0/config/redis.conf target: /opt/bitnami/redis/mounted-etc/redis.conf ``` You would need...
Hi @dominikkrulak, I'm happy it helped. Our logic adds that directive into `redis.conf` file is you set `REDIS_PASSWORD`. However, we don't edit the configuration file if you mount it. ```...