Files
katenary/examples/same-pod/config/nginx/default.conf

11 lines
160 B
Plaintext
Raw Normal View History

2022-02-17 11:48:33 +01:00
upstream _php {
server unix:/sock/fpm.sock;
}
server {
listen 80;
location ~ ^/index\.php(/|$) {
fastcgi_pass _php;
include fastcgi_params;
}
}