php/flashii.net.conf

| about 1 month ago |
36
|
| View Raw
  1. 1
    location ~ ^/index\.php(/|$) {
  2. 2
    fastcgi_split_path_info ^(.+?\.php)(/.*)$;
  3. 3
     
  4. 4
    if (!-f $document_root$fastcgi_script_name) {
  5. 5
    return 404;
  6. 6
    }
  7. 7
     
  8. 8
    fastcgi_pass unix:/var/run/php/php8.5-fpm-flashii.net.sock;
  9. 9
    fastcgi_index index.php;
  10. 10
    include fastcgi_params;
  11. 11
    }