1、添加 yum 资源
添加 CentOS7 Nginx yum 资源库,打开终端,使用以下命令(没有换行):
1
| sudo rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm
|
2、安装 Nginx
1
| sudo yum install -y nginx
|
Nginx 将安装在你的 CentOS7 服务器中。
3、启动 Nginx
运行 Nginx:
1
| sudo systemctl start nginx.service
|
如果一切进展顺利的话,现在你可以通过你的域名或 IP 来访问你的 Web 页面来预览一下 Nginx 的默认页面
4、Nginx 的一些目录
1 2 3 4 5 6 7 8 9 10 11
| /usr/share/nginx/html 网站默认站点配置
/etc/nginx/conf.d/default.conf 自定义Nginx站点配置文件存放目录,自己在这里也可以定义别的名字的.conf,这个的作用以后再说。
/etc/nginx/conf.d/ Nginx全局配置
/etc/nginx/nginx.conf 在这里你可以改变设置用户运行Nginx守护程序进程一样,和工作进程的数量得到了Nginx正在运行,等等。
|
5、配置文件 default.conf
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
| server { listen 80; server_name nginx.310058.cn;
#charset koi8-r; #access_log /var/log/nginx/log/host.access.log main;
location / { root /usr/share/nginx/html; index index.html index.htm; }
#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 /usr/share/nginx/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; # include fastcgi_params; #}
# deny access to .htaccess files, if Apache's document root # concurs with nginx's one # #location ~ /\.ht { # deny all; #} }
|
一些命令
1 2 3 4 5 6 7 8 9 10 11 12
| service nginx restart
kill -QUIT 进程号 kill -TERM 进程号 kill -INT 进程号 p-kill -9 nginx
nginx -t
nginx -s reload
kill -HUP 进程号
|