From 6746ef6ae948aa3e1ef0296fe4e38bf949a09193 Mon Sep 17 00:00:00 2001 From: sottomaiormacedotec Date: Thu, 16 Apr 2026 19:54:08 +0200 Subject: [PATCH] helpdesk.sottomaiormacedo.tech --- helpdesk.sottomaiormacedo.tech | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 helpdesk.sottomaiormacedo.tech diff --git a/helpdesk.sottomaiormacedo.tech b/helpdesk.sottomaiormacedo.tech new file mode 100644 index 0000000..5c09363 --- /dev/null +++ b/helpdesk.sottomaiormacedo.tech @@ -0,0 +1,19 @@ +server { + listen 8083; + server_name helpdesk.sottomaiormacedo.tech; + root /var/www/helpdesk.sottomaiormacedo.tech/glpi; # O GLPI geralmente fica numa subpasta ou raiz + index index.php index.html; + + location / { + try_files $uri $uri/ /index.php$is_args$args; + } + + location ~ \.php$ { + include snippets/fastcgi-php.conf; + fastcgi_pass unix:/var/run/php/php-fpm.sock; # Verifique sua versão do PHP aqui + } + + location ~ /\.ht { + deny all; + } +} \ No newline at end of file