Maison  >  Questions et réponses  >  le corps du texte

macos - Comment utiliser Nginx pour créer plusieurs projets sur Mac

Similaire à plusieurs projets sur le serveur Apache
{

    listen       8080;
    server_name  g.sym.com;

    #charset koi8-r;

    #access_log  logs/host.access.log  main;

    location / {
        root   /Users/light/php;
        index  index.html index.htm index.php;
    }

    #error_page  404              /404.html;

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   html;
    }

    # proxy the PHP scripts to Apache listening on 127.0.0.1:80
    #
    #location ~ \.php$ {
    #    proxy_pass   http://127.0.0.1;
    #}

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    location ~ \.php$ {
        root           html;
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include        fastcgi_params;
        }

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /\.ht {
    #    deny  all;
    #}
}

更改了root 目录和加了个域名 我也在hosts上面加了 但是重启nginx 并不生效 求教。。
曾经蜡笔没有小新曾经蜡笔没有小新2712 Il y a quelques jours678

répondre à tous(1)je répondrai

  • PHP中文网

    PHP中文网2017-05-16 17:10:37

    location ~ \.php$ {
    root           html;
    fastcgi_pass   127.0.0.1:9000;
    fastcgi_index  index.php;
    fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include        fastcgi_params;
    }
            
        

    Le répertoire racine ici doit également être modifié.

    répondre
    0
  • Annulerrépondre