17 lines
494 B
Plaintext
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;
|
|
}
|
|
} |