24 lines
752 B
Plaintext
24 lines
752 B
Plaintext
# Top-level nginx.conf for systemd ExecStart -c /etc/sankofa-web-hub/nginx.conf
|
|
# On CT: install snippets to /etc/sankofa-web-hub/ and include site conf from repo examples.
|
|
#
|
|
# mkdir -p /etc/sankofa-web-hub/conf.d
|
|
# cp repo/config/nginx/sankofa-non-chain-frontends.example.conf /etc/sankofa-web-hub/conf.d/site.conf
|
|
# cp repo/config/nginx/sankofa-hub-main.example.conf /etc/sankofa-web-hub/nginx.conf
|
|
|
|
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-web-hub/conf.d/*.conf;
|
|
}
|