安装
# 系统:centos 7
# /etc/yum.repos.d/nginx.repo
[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/centos/7/$basearch/
gpgcheck=0
enabled=1
$ yum -y install nginx
启动
$ nginx
$ nginx -s quit
$ nginx -s stop # 强制退出
$ nginx -s reload
$ nginx -s reopen # 重新打开日志文件
配置
配置文件:/etc/nginx/conf.d/default.conf
# 在 server 内添加
# location 后面的符号是 URL
# root 后面是 目录,语句以分号结束
# URL 的匹配原则是优先匹配最长的
location / {
root /www/root;
index index.html index.htm;
}
# http://127.0.0.1/images/nginx.png --- /www/images/nginx.png
location /images/ {
root /www;
}
日志
路径:/var/log/nginx/error.log