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