wordpress-nginx/global/php-pool.conf
2019-05-22 10:59:52 -03:00

12 lines
359 B
Plaintext

# Upstream to abstract backend connection(s) for PHP.
# Additional upstreams can be added to /etc/nginx/upstreams/*.conf and then you just
# change `default php73` to whatever the new upstream is (could be php70 for example).
upstream php73 {
server unix:/run/php/php7.3-fpm.sock;
}
include /etc/nginx/upstreams/*.conf;
map '' $upstream {
default php73;
}