Nginx Configuration Files
1 min read
- Authors
- Name
- Vijaykumar Rajendran
- @vijayrajendran_

Table of Contents
Nginx Configuration Files
The main config file is /etc/nginx/nginx.conf
Basic Structure
user nginx;
worker_processes auto;
events {
worker_connections 1024;
}
http {
server {
listen 80;
server_name example.com;
}
}
Done!