配置php后nginx失败

问题描述 投票:0回答:1
● nginx.service - A high performance web server and a reverse proxy server
     Loaded: loaded (/lib/systemd/system/nginx.service; enabled; vendor preset: enabled)
     Active: failed (Result: exit-code) since Wed 2020-06-03 21:32:37 UTC; 17s ago
       Docs: man:nginx(8)
    Process: 3056 ExecStartPre=/usr/sbin/nginx -t -q -g daemon on; master_process on; (code=exited, status=1/FAILURE)
Jun 03 21:32:34 sal systemd[1]: Starting A high performance web server and a reverse proxy server...
Jun 03 21:32:37 sal nginx[3056]: nginx: [emerg] "fastcgi_pass" directive is duplicate in /etc/nginx/sites-enabled/default:62
Jun 03 21:32:37 sal nginx[3056]: nginx: configuration file /etc/nginx/nginx.conf test failed
Jun 03 21:32:37 sal systemd[1]: nginx.service: Control process exited, code=exited, status=1/FAILURE
Jun 03 21:32:37 sal systemd[1]: nginx.service: Failed with result 'exit-code'.
Jun 03 21:32:37 sal systemd[1]: Failed to start A high performance web server and a reverse proxy server.

密档

    }

    # pass PHP scripts to FastCGI server
        #
    location ~ \.php$ {
        include snippets/fastcgi-php.conf;
    #
    #   # With php-fpm (or other unix sockets):
        fastcgi_pass unix:/var/run/php/php7.4-fpm.socket;
    #   # With php-cgi (or other tcp sockets):
        fastcgi_pass 127.0.0.1:9000;
    }
php nginx fastcgi
1个回答
1
投票

它明确的告诉你,你不能使用fastcgi_pass重复。所以,如果你使用php socket,可以这样设置。

如果你使用php套接字,请这样设置。

}
# pass PHP scripts to FastCGI server
location ~ \.php$ {
    include snippets/fastcgi-php.conf;
#   # With php-cgi (or other tcp sockets):
    fastcgi_pass 127.0.0.1:9000;
}

或者如果你使用的是unix套接字,把fastcgi_pass改成。

}
# pass PHP scripts to FastCGI server
location ~ \.php$ {
    include snippets/fastcgi-php.conf;
#   # With php-fpm (or other unix sockets):
    fastcgi_pass unix:/var/run/php/php7.4-fpm.socket;
}
© www.soinside.com 2019 - 2024. All rights reserved.