Re: [users@httpd] Running Apache in Single Process Mode for Docker Container?

2015-10-25 Thread ryo takatsuki
I may be wrong, but I believe you are looking for this (to keep apache attached to the shell): http://zroger.com/blog/apache-in-the-foreground/ You could also take a look at this, as it may already be taking care of what you seem to be looking for: https://github.com/bitnami/bitnami-docker-apach

[users] Re: [users@httpd] Is it possible to evaluate .htaccess before proxying requests? (Apache 2.4.9)

2014-06-03 Thread ryo takatsuki
Hi, You could try this: Rewrite Engine On RewriteRule ^(.*\.php)$ fcgi://backend-fpm/%{REQUEST_FILENAME} [P] Best regards, Juanjo. 2014-05-27 12:45 GMT+02:00 Tobias Adolph : > Hello everybody, > > isn't there any solution? > > Am 19.05.2014 13:30, schrieb Tobias Adolph: > >> >> I

Re: [users@httpd] Issues with UDS support for mod_proxy in trunk

2013-11-07 Thread ryo takatsuki
tocol handler was valid for the URL /foo/index.php. If you are using a DSO version of mod_proxy, make sure the proxy submodules are included in the configuration using LoadModule. Thanks for your help! 2013/11/6 Jim Jagielski > Try this patch: > > > > On Nov 5, 2013, at 2:

[users@httpd] Issues with UDS support for mod_proxy in trunk

2013-11-05 Thread ryo takatsuki
Hi, A month ago I checked the new UDS (Unix Domain Sockets) support and it worked properly (I need to tweak it a little bit for my needs). The syntax at that point was: ProxyPassMatch ^(.*\.php(/.*)?)$ fcgi://uds=%2ftmp%2fsomedir%2fphp%2fvar%2frun%2fsocket.sock/$1 Today I checked the latest chan