20 lines
529 B
Plaintext
20 lines
529 B
Plaintext
# Top-level nginx.conf for API hub — copy to /etc/sankofa-phoenix-api-hub/nginx.conf on CT.
|
|
# Include path-based site from sankofa-phoenix-api-hub.example.conf under conf.d/
|
|
|
|
user nginx;
|
|
worker_processes auto;
|
|
error_log /var/log/nginx/error.log warn;
|
|
pid /var/run/nginx.pid;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
include /etc/nginx/mime.types;
|
|
default_type application/octet-stream;
|
|
sendfile on;
|
|
keepalive_timeout 65;
|
|
include /etc/sankofa-phoenix-api-hub/conf.d/*.conf;
|
|
}
|