Added some generated examples

This commit is contained in:
2022-02-17 11:48:33 +01:00
parent 3d45401649
commit 8543bc5232
20 changed files with 402 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
upstream _php {
server unix:/sock/fpm.sock;
}
server {
listen 80;
location ~ ^/index\.php(/|$) {
fastcgi_pass _php;
include fastcgi_params;
}
}