build(docker): add docker containers

This commit is contained in:
2024-08-07 12:29:53 +02:00
parent 7b9327a55d
commit b3dd6579c5
12 changed files with 409 additions and 0 deletions

19
docker/nginx/default.conf Normal file
View File

@@ -0,0 +1,19 @@
server {
index index.php index.html;
server_name symfony_example_app;
error_log stderr debug;
access_log stderr;
listen 80;
root /var/www/html/public;
location / {
try_files $uri /index.php$is_args$args;
}
location ~ ^/.+\.php(/|$) {
fastcgi_pass php-fpm:9000;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}