这是系统上的结果:
[root@VM_0_10_centos html]# ps axu|grep nginx
root 1024 0.0 0.2 125792 5368 ? Ss 12:24 0:00 nginx: master process /usr/sbin/nginx
nginx 19607 0.0 0.2 128328 4728 ? S 17:58 0:00 nginx: worker process
root 21906 0.0 0.0 112708 980 pts/0 R+ 18:12 0:00 grep --color=auto nginx
[root@VM_0_10_centos html]# cd /usr/share/nginx/html/
[root@VM_0_10_centos html]# ls -l
total 24
-rw-r--r-- 1 nginx nginx 3650 May 10 16:08 404.html
-rw-r--r-- 1 nginx nginx 3693 May 10 16:08 50x.html
lrwxrwxrwx 1 nginx nginx 19 Sep 12 10:02 drupal -> /usr/share/drupal7/
-rw-r--r-- 1 nginx nginx 3700 May 10 16:08 index.html
-rw-r--r-- 1 nginx nginx 368 May 10 16:08 nginx-logo.png
-rw-r--r-- 1 nginx nginx 2811 May 10 16:08 poweredby.png
-rw-r--r-- 1 nginx nginx 20 Sep 11 17:13 test.php
lrwxrwxrwx 1 nginx nginx 21 Sep 11 17:17 wordpress -> /usr/share/wordpress/
我已经重启了nginx和php-fpm,下面是nginx.conf文件的内容:
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;
# Load dynamic modules. See /usr/share/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;
events {
worker_connections 1024;
}
http {
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 /var/log/nginx/access.log main;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;
# Load modular configuration files from the /etc/nginx/conf.d directory.
# See http://nginx.org/en/docs/ngx_core_module.html#include
# for more information.
include /etc/nginx/conf.d/*.conf;
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name localhost;
root /usr/share/nginx/html;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location / {
}
location ~ \.php$ {
root /usr/share/nginx/html/;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}