博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx 配置 getsimplecms 配置文件
阅读量:6172 次
发布时间:2019-06-21

本文共 992 字,大约阅读时间需要 3 分钟。

getsimplecms的安装需要两个php类库,一个是dom操作,一个是gd library.

所以先安装这两个类库,重启php解释器。

yum install php-xml;yum install gd gd-devel php-gd;service php-fpm restart;

服务器配置文件如下:

server {    listen   80;    #TODO: make www to redirect!    server_name test.com;    access_log /var/log/nginx/test.com.access.log;    error_log /var/log/nginx/test.com.error.log;    location / {        root   /var/www/test.com;        index  index.html index.htm index.php;        # this serves static files that exist without running other rewrite tests        if (-f $request_filename) {            expires 30d;            break;        }        # this sends all non-existing file or directory requests to index.php        if (!-e $request_filename) {            rewrite ^(.+)$ /index.php?id=$1 last;        }    }    location ~ \.php$ {        include /etc/nginx/fastcgi_params;        fastcgi_pass  127.0.0.1:9000;        fastcgi_index index.php;        fastcgi_param  SCRIPT_FILENAME  /var/www/test.com$fastcgi_script_name;    }}

转载地址:http://wpxba.baihongyu.com/

你可能感兴趣的文章
从开源小白到 Apache Member,我的成长之路
查看>>
logstash简介
查看>>
Java多线程之synchronized理论
查看>>
Android NestedScrolling解决滑动冲突问题(2) - fling问题与NestedScroll++
查看>>
Tomcat和JVM的性能调优总结
查看>>
硬件线程和软件线程的区别
查看>>
时间戳前
查看>>
11月22日晚上海交大《PMI敏捷实践指南解读》线上沙龙欢迎你的参与!
查看>>
初识 Linux (VMware、CentOS 7)
查看>>
使用SpringMVC完成文件上传
查看>>
mysql Load Data InFile 的用法
查看>>
Go new vs make
查看>>
【云宏大讲坛】超融合,融合的不仅是基础架构
查看>>
pytnon入门的一些小实例
查看>>
ubuntu下的dock工具
查看>>
饿了么被上海市市场监督局予以警告处分
查看>>
Java项目读取配置文件时,找不到指定的文件???
查看>>
lua/luajit and tcc
查看>>
前端安全即JS代码安全,前端源码安全探讨!
查看>>
如何快速实现异地不同网络打印机共享
查看>>