diff --git a/.idea/php.xml b/.idea/php.xml
index f324872..8d4f284 100644
--- a/.idea/php.xml
+++ b/.idea/php.xml
@@ -10,6 +10,7 @@
+
diff --git a/.idea/symfony-template.iml b/.idea/symfony-template.iml
index c956989..de5d160 100644
--- a/.idea/symfony-template.iml
+++ b/.idea/symfony-template.iml
@@ -1,7 +1,10 @@
-
+
+
+
+
diff --git a/podman/nginx/default.conf b/podman/nginx/default.conf
index 19e99b4..4dfd4a0 100644
--- a/podman/nginx/default.conf
+++ b/podman/nginx/default.conf
@@ -22,8 +22,8 @@ server {
fastcgi_pass localhost:9000;
fastcgi_split_path_info ^(.+\.php)(/.*)$;
include fastcgi_params;
- fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
- fastcgi_param DOCUMENT_ROOT $realpath_root;
+ fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
+ fastcgi_param DOCUMENT_ROOT $document_root;
fastcgi_buffer_size 128k;
fastcgi_buffers 4 256k;
fastcgi_busy_buffers_size 256k;
diff --git a/setup-dev.sh b/setup-dev.sh
index bad5af0..06b595e 100755
--- a/setup-dev.sh
+++ b/setup-dev.sh
@@ -65,6 +65,7 @@ echo "Starte Nginx..."
podman run -d \
--pod "$POD_NAME" \
--name "$CTR_NGINX" \
+ -v "$PROJECT_DIR:/var/www/html:Z" \
"$IMG_NGINX"
echo ""