helpdesk.conf
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user