From 1e3bb91ebbdafbb38b660f607034f48641883af1 Mon Sep 17 00:00:00 2001 From: sottomaiormacedotec Date: Thu, 16 Apr 2026 19:53:24 +0200 Subject: [PATCH] helpdesk.conf --- helpdesk.conf | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 helpdesk.conf diff --git a/helpdesk.conf b/helpdesk.conf new file mode 100644 index 0000000..f62ef77 --- /dev/null +++ b/helpdesk.conf @@ -0,0 +1,17 @@ +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; + } +} \ No newline at end of file