php nginx rewrite urls to index.php with
I've been trying to get this to work for a while now, but I'm failing manifold. I have the following configuration: server { listen 8081; server_name name.of.server.en; root /path/to/api; index index.php; location ~ .php$ { include snippets/fastcgi-php.conf; fastcgi_pass unix:/run/php/php7.4-fpm.sock; }…