0%

nginx基本配置

Nginx 基本配置

nginx 官方文档地址 docs

  1. 安装nginx sudo apt install nginx
  2. 修改nginx 配置文件,使用 nginx -t 可以查看配置文件的位置
  3. 基本指令 nginx 一旦启动,就可以使用 nginx -s stop|quit|reload|reopen来控制nginx

配置静态的资源服务器

修改nginx 的配置文件,添加一个静态资源服务器的内容如下

1
2
3
4
5
http{
server{

}
}
使用location 去限定静态资源的路径
1
2
3
location{
root /data/www;
}
可以重定向路由例如
1
2
3
4
5
6
7
8
9
server {    
location / {
root /data/www;
}

location /images/ {
root /data;
}
}