docker-certbot-nginx/example/nginx.conf
2025-02-19 15:56:07 +04:00

15 lines
200 B
Nginx Configuration File

worker_processes 4;
events {
worker_connections 1024;
}
http {
access_log off;
error_log off;
include mime.types;
default_type application/octet-stream;
include /etc/nginx/http.d/*;
}