File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
1
# Upstream to abstract backend connection(s) for PHP.
2
2
# Additional upstreams can be added to /etc/nginx/upstreams/*.conf and then you just
3
- # change `default php71 ` to whatever the new upstream is (could be php70 for example).
4
- upstream php71 {
5
- server unix:/run/php/php7.1 -fpm.sock;
3
+ # change `default php74 ` to whatever the new upstream is (could be php73 for example).
4
+ upstream php74 {
5
+ server unix:/run/php/php7.4 -fpm.sock;
6
6
}
7
7
8
8
include /etc/nginx/upstreams/*.conf;
9
9
10
10
map '' $upstream {
11
- default php71 ;
11
+ default php74 ;
12
12
}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ # Defines the upstream for PHP 7.3
2
+ upstream php73 {
3
+ server unix:/run/php/php7.3-fpm.sock;
4
+ }
You can’t perform that action at this time.
0 commit comments