Просмотр поста

.
Koenig
(\/)____o_O____(\/)

Простой конфиг домена

server {
        listen 80;
        listen [::]:80;

        root /var/www/j9.loc;

        index index.php;

        server_name j9.loc;

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

        location ~ \.php$ {
                include snippets/fastcgi-php.conf;
                fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
        }

        location ~ /\.ht {
                deny all;
        }
}