Код IT
← Каталог

Локальная среда разработки на PHP — Nginx

Фрагмент из «Локальная среда разработки на PHP»: Nginx.

Nginx main.conf
server {
    listen 80;
    server_name example.loc;
    root "C:/OpenServer/domains/example.loc";
    index index.php;
    
    location / {
        try_files $uri $uri/ /index.php?$args;
    }
    
    location ~ \.php$ {
        fastcgi_pass 127.0.0.1:9000;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    }
}
server {
    listen 80;
    server_name example.loc;
    root "C:/OpenServer/domains/example.loc";
    index index.php;
    
    location / {
        try_files $uri $uri/ /index.php?$args;
    }
    
    location ~ \.php$ {
        fastcgi_pass 127.0.0.1:9000;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    }
}