Skip to content

Commit

Permalink
minor #607 Fix inverted line in nginx configuration (vasilvestre)
Browse files Browse the repository at this point in the history
This PR was merged into the 1.9-dev branch.

Discussion
----------

I think Sylius/Sylius-Standard#536 has introduced a little error https://github.com/Sylius/Sylius-Standard/pull/536/files#diff-f583d11fcce9311b02b20054d21bc42d9c3ce8337322f0f4c66a16f36825f766R12-R13

Commits
-------

0cf05217653166214397ce1a61c89b7f213bc517 Fix inverted line
  • Loading branch information
windragon0910 committed Sep 16, 2021
2 parents ce06679 + 99a3193 commit fd9eefd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/nginx/conf.d/default.conf
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ server {
location ~ ^/index\.php(/|$) {
resolver 127.0.0.11 valid=10s ipv6=off;
set $backendfpm "php:9000";
fastcgi_pass $backendfpm;
# Comment the next line and uncomment the next to enable dynamic resolution (incompatible with Kubernetes);
fastcgi_pass $backendfpm;
#resolver 127.0.0.11;
#set $upstream_host php;
#fastcgi_pass $upstream_host:9000;
Expand Down

0 comments on commit fd9eefd

Please sign in to comment.