[Linux虛擬機中安裝VMware Tools](http://www.cnblogs.com/Parallel-Life/archive/2012/02/18/2356868.html)
# node
# nginx
## 安裝
yum 安裝 Nginx,非常簡單,一條命令。
~~~
$ sudo yum install nginx
~~~
## 配置 Nginx 服務
設置開機啟動
~~~
$ sudo systemctl enable nginx
$ sudo systemctl start nginx
$ sudo systemctl restart nginx
~~~
重新加載,因為一般重新配置之后,不希望重啟服務,這時可以使用重新加載。
~~~
$ sudo systemctl reload nginx
~~~
## 參考
[How to Set Up Nginx Server Blocks on CentOS 7](https://linuxize.com/post/how-to-set-up-nginx-server-blocks-on-centos-7/)
[CentOS 7 下 yum 安裝和配置 Nginx](https://qizhanming.com/blog/2018/08/06/how-to-install-nginx-on-centos-7)