nginx.conf 234 B

1234567891011
  1. server {
  2. listen 8009;
  3. root /var/www/html/binternet;
  4. index index.php;
  5. location ~ \.php$ {
  6. include snippets/fastcgi-php.conf;
  7. fastcgi_pass unix:/run/php/php7.4-fpm.sock;
  8. }
  9. }