Guten Tag,
an sich läuft bei mir meinen Installation komplett durch nur bekomme ich danach beim auf rufen von http://192.168.xx.xx:8080/contao http://192.168.xx.xx:8080/contao/install und http://192.168.xx.xx:8080/ folgende Fehler:

Code:
http://192.168.xx.xx:8080/contao
Notice: Undefined offset: 1 in /var/www/html/test/web/contao-manager.phar.php on line 47

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/test/web/contao-manager.phar.php:47) in /var/www/html/test/web/contao-manager.phar.php on line 88

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/test/web/contao-manager.phar.php:47) in /var/www/html/test/web/contao-manager.phar.php on line 88

http://192.168.250.169:8080/contao/install
Notice: Undefined offset: 1 in /var/www/html/test/web/contao-manager.phar.php on line 47

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/test/web/contao-manager.phar.php:47) in /var/www/html/test/web/contao-manager.phar.php on line 88

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/test/web/contao-manager.phar.php:47) in /var/www/html/test/web/contao-manager.phar.php on line 88
Nginx config (ja mir ist bewusst dass diese aktuell nur auf /contao-manager.phar.php zeigt da alle anderen versuche gescheitert sind):
Code:
server {
    index index.php index.html;
    server_name localhost;
    error_log  /var/log/nginx/error.log;
    access_log /var/log/nginx/access.log;
    root /var/www/html/test/web/;

    location / {
        try_files $uri $uri/ /contao-manager.phar.php?$args;
    }

    location ~ \.php$ {
        try_files $uri =404;
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass php-fpm:9000;
        fastcgi_index index.php;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param PATH_INFO $fastcgi_path_info;
    }
}
PS: Der Aufbau läuft in einem Docker Container, sollte aber denke ich kein Problem sein da die Seiten landen und es nur an der Nginx Conifg hängt.