Laravel nova not working with nginx+php-fpm, this.app is undefined after redirect to login

Viewed 25

When I install it on the server - it doesn't work, i got blank screen with background and this.app is undefined error in console on server/nova/login page.

nginx config:

server {
    listen 80;
    listen [::]:80;
    server_name wtw.test.loc;

    root /home/test/sites/wtw/www/public;

    access_log /home/test/sites/wtw/logs/access.log combined;
    error_log /home/test/sites/wtw/logs/error.log warn;

    add_header X-Frame-Options "SAMEORIGIN";
    add_header X-Content-Type-Options "nosniff";

    index index.php;

    charset utf-8;

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }

    location = /favicon.ico { access_log off; log_not_found off; }
    location = /robots.txt  { access_log off; log_not_found off; }

    error_page 404 /index.php;

    location ~ /\.(?!well-known).* {
        deny all;
    }

    location ~ \.php$ {
        fastcgi_pass unix:/var/run/php/php8.1-wtw.test.sock;
        fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
        include fastcgi_params;
    }
}
0 Answers
Related