归档文章 (2011-2017)

date
2017/02/01

一、安装 Nginx

1.添加 Nginx Yum 源

cat >/etc/yum.repos.d/nginx.repo <<'EOF' [nginx] name=nginx repo baseurl=http://nginx.org/packages/centos/7/$basearch/ gpgcheck=0 enabled=1 EOF

2.安装 MariaDB

yum -y install nginx

3.启动 MariaDB

sudo systemctl start nginx sudo systemctl enable nginx

4.防火墙设置

sudo firewall-cmd --permanent --zone=public --add-service=http sudo firewall-cmd --permanent --zone=public --add-service=https sudo firewall-cmd --reload

二、设置 Nginx

1. 网址:

ip addr show eth0 | grep inet | awk '{ print $2; }' | sed 's/\/.*$//'

2. 配置文件路径

  • 默认网站根目录 /usr/share/nginx/html
  • 默认网站根配置文件 /etc/nginx/conf.d/default.conf
  • 其他网站配置文件 /etc/nginx/conf.d/
  • 全局配置文件 /etc/nginx/nginx.conf
参考文档:
If you have any questions, please contact me.