nginx.conf是Nginx的配置文件,其文件结构如下
nginx.conf
Nginx
### 全局模块 ... ### events模块 events { ... } ### http模块 http { ... server { ... location /web1 { ... } location /web2 { ... } } server { ... ... } }
Last updated 6 years ago