Initial commit

This commit is contained in:
2025-12-03 15:42:58 +00:00
commit e7128e8652
13 changed files with 162 additions and 0 deletions

View File

24
config/nginx/nginx.conf Normal file
View File

@@ -0,0 +1,24 @@
# 1. Main global section
user nginx;
worker_processes auto;
# 2. **REQUIRED EVENTS BLOCK**
events {
# Define how Nginx handles connections
worker_connections 1024;
}
# 3. HTTP context (where your server blocks go)
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent"';
sendfile on;
keepalive_timeout 65;
resolver 127.0.0.11 valid=5s ipv6=off;
# Include your server configuration files (like develop.conf)
include /etc/nginx/conf.d/*.conf;
}