added development environment

This commit is contained in:
2022-04-18 13:22:09 +02:00
parent b960d5eefe
commit 844e3f3226
4 changed files with 55 additions and 0 deletions

12
nginx.conf Normal file
View File

@@ -0,0 +1,12 @@
server {
listen 80 default_server;
root /app/public;
index index.php index.html index.htm;
location ~ \.php$ {
fastcgi_pass php:9000;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}