nginx hooks for future extensions

This commit is contained in:
Devaev Maxim
2018-10-31 02:11:55 +03:00
parent aeed3daac5
commit bc88a49dcc
5 changed files with 7 additions and 1 deletions

View File

View File

View File

View File

@@ -6,6 +6,8 @@ worker_processes 4;
# error_log /tmp/nginx.error.log;
error_log /dev/null crit;
include /etc/nginx/ext.d/*/main-ctx.conf;
events {
worker_connections 1024;
use epoll;
@@ -38,6 +40,8 @@ http {
server 127.0.0.1:8082 fail_timeout=0s max_fails=0;
}
include /etc/nginx/ext.d/*/http-ctx.conf;
#PROD server {
#PROD listen 80;
#PROD server_name localhost;
@@ -133,5 +137,7 @@ http {
proxy_buffering off;
proxy_ignore_headers X-Accel-Buffering;
}
include /etc/nginx/ext.d/*/server-ctx.conf;
}
}