mirror of
https://github.com/Telecominfraproject/openafc_final.git
synced 2025-11-02 11:08:03 +00:00
19 lines
458 B
Nginx Configuration File
19 lines
458 B
Nginx Configuration File
#
|
|
# Copyright © 2022 Broadcom. All rights reserved. The term "Broadcom"
|
|
# refers solely to the Broadcom Inc. corporate affiliate that owns
|
|
# the software below. This work is licensed under the OpenAFC Project License,
|
|
# a copy of which is included with this software program
|
|
#
|
|
user nginx;
|
|
worker_processes auto;
|
|
|
|
error_log /dev/stdout crit;
|
|
pid /var/run/nginx.pid;
|
|
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
include /etc/nginx/conf.d/nginx.conf;
|