Files
helpdesk/helpdesk.sottomaiormacedo.tech

19 lines
498 B
Plaintext

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;
}
}