Finally I found the solution. I don't know only if it would work with static assets, probably not, but this was not my case. Feel free to beautify and simplify this code as I'm aware that it looks a little bit ugly but it's working perfectly.
location ~ /notification { set $new_request_uri /; if ($request_uri ~ ^/notification(.+)$) { set $new_request_uri $1; } if ($request_uri ~ ^/notification\?(.+)$) { set $new_request_uri /?$1; } set $new_document_uri /; if ($document_uri ~ ^/notification(.+)$) { set $new_document_uri $1; } fastcgi_pass wolnosciowiec_notification:9000; fastcgi_split_path_info ^(.+\.php)(/.*)$; include fastcgi_params; fastcgi_param REQUEST_URI $new_request_uri; fastcgi_param DOCUMENT_URI $new_document_uri; fastcgi_param SCRIPT_NAME /www/notification/web/app.php; fastcgi_param SCRIPT_FILENAME /www/notification/web/app.php; fastcgi_param DOCUMENT_ROOT /www/notification/web; fastcgi_param HTTPS on; }
manpreet
Best Answer
2 years ago
I need to have multiple PHP-FPMs on single domain.
Example: services.local/notification -> notification:9000 services.local/auth -> auth:9000
So, I have a vhost configuration:
And I have a notification.conf
The problem is that every rewrite to the app.php results in downloading it's contents, not passing it to FPM.
When I access the app.php directly then it's passed to PHP-FPM, only problem is with a combination of subdirectory + PHP-FPM + rewrite
I think I tried everything for two days and I don't have any other ideas. This config was rebuilded 50 times :)