upload example/ dir

This commit is contained in:
DarkCat09 2025-02-19 15:56:07 +04:00
parent 8d1027d23f
commit 214ddf4785
Signed by: DarkCat09
GPG key ID: BD3CE9B65916CD82
3 changed files with 37 additions and 0 deletions

15
example/nginx.conf Normal file
View file

@ -0,0 +1,15 @@
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/*;
}