This repository has been archived on 2021-12-24. You can view files and clone it, but cannot push or open issues/pull-requests.
self-hosting/nginx/nginx.conf

9 lines
159 B
Nginx Configuration File
Raw Normal View History

2021-01-04 14:27:32 +01:00
# Run as nginx user
user nginx nginx;
# Auto-detect the core count for worker processes
worker_processes auto;
# Load config segments
2021-04-23 21:46:35 +02:00
include conf.d/*.conf;