博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx socket支持php
阅读量:6799 次
发布时间:2019-06-26

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

server {

        listen       80;
        server_name  resys.oa.com;
        index index.html index.htm index.php;
        root  /data/wwwroot/resys.oa.com;
        location ~ .*\.(php|php5)?$
        {
                fastcgi_pass  unix:/dev/shm/php-cgi.sock;
                fastcgi_index index.php;
                include fcgi.conf;
        }
        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|data|js|css|html|htm)$
        {
                expires      365d;
        }
        set $mefile '';
        if ($request_uri !~* ((^/$)|/(api|static|by_upload_file)|s\.php|(.*(\.html|\.js|\.css|\.ico|\.txt).*)) ) {
                rewrite ^/(.*)$ $mefile/index.php?$1 last;
        }
        access_log off;
}

转载于:https://my.oschina.net/vicall/blog/272062

你可能感兴趣的文章
【前端词典】 Vue 响应式原理其实很好懂
查看>>
你不知道的JS(上册)
查看>>
AJAX(前后端交互--下拉列表)
查看>>
Android右侧边栏滚动选择
查看>>
Redis笔记
查看>>
B树很简单,插入So easy
查看>>
SpringBoot2 | SpringBoot启动流程源码分析(二)
查看>>
MyBatis 原理浅析——基本原理
查看>>
第七章:SpringCloud Feign对hystrix的支持
查看>>
从零开始学习hadoop之发行版选择
查看>>
浅谈Vuex
查看>>
Redis radix tree源码解析
查看>>
数组和链表
查看>>
撩课-Java面试宝典-第三篇
查看>>
阿里云前端周刊 - 第 13 期
查看>>
[深入理解ES6]let/const/var
查看>>
微信小程序-骚操作,自定义授权对话框,且遮盖层遮住tabBar
查看>>
vue中如何使用mockjs摸拟接口的各种数据
查看>>
给你一份架构部操作手册,你会用么?
查看>>
接口Deque <E>
查看>>