Files
helpdesk/helpdesk.conf
2026-04-16 19:53:24 +02:00

17 lines
494 B
Plaintext

server {
listen 8083;
server_name helpdesk.sottomaiormacedo.tech;
root /var/www/helpdesk.sottomaiormacedo.tech/helpdesk;
index index.php index.html;
location / {
try_files $uri $uri/ /index.php$is_args$args;
}
location ~ \.php$ {
include fastcgi_params;
fastcgi_pass unix:/run/php-fpm/www.sock; # Caminho padrão no AlmaLinux
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}