inital commit

This commit is contained in:
Mark Randall Havens 2025-05-23 19:36:36 -05:00
commit 0978b41afd
20 changed files with 392 additions and 0 deletions

15
nginx/dev/nginx.conf Normal file
View file

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