1 启动,停止和重新加载配置
nginx -s stop 快速关机
nginx -s quit 正常关机
nginx -s reload 重新加载配置文件(比较常用)
nginx -s reopen 重新打开日志文件
ps -ax | grep nginx 查看呢nginx 命令
./nginx -t 查看conf 配置是否报错
编辑etc/hosts
2 nginx 配置文件存在nginx.conf 配置文件的结构
简单伪指令 名称和参数之间用空格分隔,以;结尾
块指令 {}
如果块指令可以在括号内包含其他指令,则称为上下文( events, http, server和 location)。
3 供静态内容
server 模块
http {
server{
listen 8000;
server_name localhost;
#配置图片资源 如果有多个匹配的location块,nginx将选择前缀最长的块
location /images/ {
root /home/ftpadmin/health/;
autoindex on;
}
#配置图片资源 如果有多个匹配的location块,nginx将选择前缀最长的块
# location / {
# root /home/ftpadmin/health/;
# autoindex on;
#}
}
}