[Auto-Sync] Atualização das configurações em srvproxy001.itguys.com.br - 2025-11-24 09:22:48

This commit is contained in:
srvproxy001.itguys.com.br 2025-11-24 09:22:48 -03:00
parent 256cbbee31
commit a7e781252b
2 changed files with 2 additions and 12 deletions

View File

@ -33,8 +33,6 @@ events {
} }
http { http {
server_names_hash_bucket_size 128;
include /etc/letsencrypt/le_http_01_cert_challenge.conf;
# --- Configurações Globais Mínimas --- # --- Configurações Globais Mínimas ---
sendfile on; sendfile on;
tcp_nopush on; tcp_nopush on;

View File

@ -18,9 +18,7 @@ upstream zabbix_backend {
# ============================================================================== # ==============================================================================
# BLOCO 1: Redirecionamento de HTTP (porta 80) para HTTPS # BLOCO 1: Redirecionamento de HTTP (porta 80) para HTTPS
# ============================================================================== # ==============================================================================
server {rewrite ^(/.well-known/acme-challenge/.*) $1 break; # managed by Certbot server {
listen 80; listen 80;
listen [::]:80; listen [::]:80;
server_name mimir.itguys.com.br; server_name mimir.itguys.com.br;
@ -32,16 +30,12 @@ server {rewrite ^(/.well-known/acme-challenge/.*) $1 break; # managed by Certbot
location / { location / {
return 301 https://$host$request_uri; return 301 https://$host$request_uri;
} }
location = /.well-known/acme-challenge/_0RFD1JjsZNjicyChvo74hJGwnVlxZU_G-pvLMhpcNI{default_type text/plain;return 200 _0RFD1JjsZNjicyChvo74hJGwnVlxZU_G-pvLMhpcNI.6NQOP-_cyjMVLz8P4PfH0klS5ZH2qgREfeMrgpUfnEk;} # managed by Certbot
} }
# ============================================================================== # ==============================================================================
# BLOCO 2: Servidor Principal - Proxy Reverso para Zabbix (HTTPS) # BLOCO 2: Servidor Principal - Proxy Reverso para Zabbix (HTTPS)
# ============================================================================== # ==============================================================================
server {rewrite ^(/.well-known/acme-challenge/.*) $1 break; # managed by Certbot server {
listen 443 ssl http2; listen 443 ssl http2;
listen [::]:443 ssl http2; listen [::]:443 ssl http2;
server_name mimir.itguys.com.br; server_name mimir.itguys.com.br;
@ -128,6 +122,4 @@ server {rewrite ^(/.well-known/acme-challenge/.*) $1 break; # managed by Certbot
location / { location / {
proxy_pass http://zabbix_backend; proxy_pass http://zabbix_backend;
} }
location = /.well-known/acme-challenge/_0RFD1JjsZNjicyChvo74hJGwnVlxZU_G-pvLMhpcNI{default_type text/plain;return 200 _0RFD1JjsZNjicyChvo74hJGwnVlxZU_G-pvLMhpcNI.6NQOP-_cyjMVLz8P4PfH0klS5ZH2qgREfeMrgpUfnEk;} # managed by Certbot
} }