Back

nginx - centos下的安装方式

发布时间: 2020-08-16 10:09:00

参考:  https://www.digitalocean.com/community/tutorials/how-to-install-nginx-on-centos-7

如果有 apache / httpd, 先停止:  

# apachectl -k stop

然后安装( 一路 yes 就可以)

yum install epel-release

yum install nginx

Back