Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kanlon/nginx-conf
自己的服务的nginx的一些配置
https://github.com/kanlon/nginx-conf
Last synced: 5 days ago
JSON representation
自己的服务的nginx的一些配置
- Host: GitHub
- URL: https://github.com/kanlon/nginx-conf
- Owner: KANLON
- Created: 2022-10-05T13:41:36.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-25T13:21:00.000Z (over 1 year ago)
- Last Synced: 2024-11-05T16:36:09.647Z (about 2 months ago)
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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配置生效