CRM integration MVP Phase 1

This commit is contained in:
Dillon
2023-02-17 09:06:18 +08:00
parent 515c71daa7
commit 1b84ccf60e
36 changed files with 2102 additions and 8 deletions
+3 -3
View File
@@ -7,7 +7,7 @@ server {
root /var/www/html/public;
server_name localhost;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
@@ -22,6 +22,6 @@ server {
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_intercept_errors on;
fastcgi_keep_conn on;
fastcgi_param PHP_VALUE "auto_prepend_file= \n allow_url_include=Off";
fastcgi_param PHP_VALUE "auto_prepend_file= \n allow_url_include=Off \n output_buffering=Off \n output_buffering=4096";
}
}
}