Added all files

This commit is contained in:
2025-05-30 09:53:45 +02:00
commit e1e343667a
885 changed files with 22353 additions and 0 deletions

11
misc/all-hosts Normal file
View File

@@ -0,0 +1,11 @@
[control]
192.168.11.10 ansible_connection=local
[database]
192.168.11.20
[loadbalancer]
192.168.11.30
[webserver]
192.168.11.40

Binary file not shown.

56
misc/nginx.conf Normal file
View File

@@ -0,0 +1,56 @@
# Archivo de configuración nginx.conf
user www-data;
worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;
events {
worker_connections 768;
# multi_accept on;
}
http {
##
# Configuración básica
##
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;
##
# Configuración de logs
##
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
##
# Gzip settings
##
gzip on;
gzip_disable "msie6";
# Configuración de virtual host
server {
listen 80 default_server;
listen [::]:80 default_server;
root /var/www/html;
index index.html index.htm index.nginx-debian.html;
server_name _;
location / {
try_files $uri $uri/ =404;
}
}
}