PHP를 실행하기 위해 MAC-OS에서 Brew 서비스를 사용하여 nginx.conf 및 php-fpm을 구성하는 방법은 무엇입니까?

PHP를 실행하기 위해 MAC-OS에서 Brew 서비스를 사용하여 nginx.conf 및 php-fpm을 구성하는 방법은 무엇입니까?

php-fpm log 에 다음 로그가 있습니다.

[19-Jan-2020 15:09:33] NOTICE: [pool www] 'user' directive is ignored when FPM is not running as root
[19-Jan-2020 15:09:33] NOTICE: [pool www] 'user' directive is ignored when FPM is not running as root
[19-Jan-2020 15:09:33] NOTICE: [pool www] 'group' directive is ignored when FPM is not running as root
[19-Jan-2020 15:09:33] NOTICE: [pool www] 'group' directive is ignored when FPM is not running as root
[19-Jan-2020 15:09:33] NOTICE: fpm is running, pid 11067
[19-Jan-2020 15:09:33] NOTICE: ready to handle connections

Nginx.conf 파일은 다음과 같습니다.

#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {
        listen       8888;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html;
            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  /scripts$fastcgi_script_name;
           # 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;
        }
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;

    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}
    include servers/*;
}

phpinfo() 함수를 실행하려고 하는데 오류 502가 발생합니다. 참고 사항: 사용 중입니다.[이메일 보호됨]그리고 php-fpm 7.2에서는 이미 php-fpm.conf 파일에서 사용자와 그룹을 변경했습니다. 어떤 도움이라도 주시면 감사하겠습니다. 미리 감사드립니다.

답변1

Nginx를 프록시로 사용하고 있는 것 같습니다. 모든 PHP 요청은 Apache 웹 서버로 프록시됩니다. 이 경우 Apache 구성을 확인해야 하며 Apache가 php7-fpm을 사용하고 있는지도 확인해야 합니다. 이 링크에서는 다음에 대한 정보를 찾을 수 있습니다.Apache2 및 PHP-FPM.

이 튜토리얼에서는 USER 지시문이 무시된다는 로그 알림을 해결하기 위해 PHP-FPM을 설정하는 방법을 찾을 수 있습니다.PHP-FPM 설정

관련 정보