mirror of
http://forgejo.openclaw.svc.cluster.local:3000/mrhavens/fold-stack.git
synced 2026-06-18 01:22:54 +00:00
15 lines
247 B
Nginx Configuration File
Executable file
15 lines
247 B
Nginx Configuration File
Executable file
worker_processes 1;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
include /etc/nginx/mime.types;
|
|
default_type application/octet-stream;
|
|
|
|
sendfile on;
|
|
keepalive_timeout 65;
|
|
|
|
include /etc/nginx/conf.d/*.conf;
|
|
}
|