Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kanlon/nginx-conf

自己的服务的nginx的一些配置
https://github.com/kanlon/nginx-conf

Last synced: 5 days ago
JSON representation

自己的服务的nginx的一些配置

Awesome Lists containing this project

README

        

# 这里记录自己的服务器上的一些nginx配置

## 概述

这里存放自己服务器上的一些nginx配置,用于备份和发布

每个配置文件基本都是一个服务的nginx配置

其中[nginx.conf.bak](./nginx.conf.bak) 为nginx的主配置文件

## 常用的一些配置说明

1. `include` 将其他目录下的配置文件引入主nginx配置生效
```
http {
.....
include /data/services/nginx_host/*.conf;
......
}
```

2. `nginx -t` 检查nginx配置是否为有效的配置同时可以看到nginx的默认的配置文件路径;`nginx -s reload` 使新增的nginx配置生效