nginx服务指令
分享知识http://www.fedrobots.com/?search=177608我来纠错//启动Nginx服务
[root@typecodes ~]# service nginx start
//停止Nginx服务
[root@typecodes ~]# service nginx stop
//重启Nginx服务
[root@typecodes ~]# service nginx restart
//Nginx服务的状态
[root@typecodes ~]# service nginx status
//在Nginx服务启动的状态下,重新加载nginx.conf这个配置文件
[root@typecodes ~]# service nginx reload