suitecrm配置(nginx设置)
生活随笔
收集整理的這篇文章主要介紹了
suitecrm配置(nginx设置)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
suitecrm配置在nginx下的一些設置
server {
listen 88;
server_name 192.168.2.253;
pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
location ~ .php$ {
root /var/www/crm/SuiteCRM;
fastcgi_pass 127.0.0.1:9000;
fastcgi_pass unix:/tmp/php-fcgi.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /var/www/crm/SuiteCRM/$fastcgi_script_name;
include fastcgi_params;
轉載于:https://www.cnblogs.com/daixh/p/11451674.html
創作挑戰賽新人創作獎勵來咯,堅持創作打卡瓜分現金大獎總結
以上是生活随笔為你收集整理的suitecrm配置(nginx设置)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 知识复习:nlp算法面试汇总
- 下一篇: @Controller与@RestCon