8 Star 26 Fork 5

xin.chu / nginx-php7-composer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
nginx.conf 999 Bytes
一键复制 编辑 原始数据 按行查看 历史
APPLE 提交于 2018-04-17 17:05 . Init project
user www www; #modify
worker_processes auto; #modify
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
error_log /var/log/nginx_error.log crit; #add
#pid logs/nginx.pid;
pid /var/run/nginx.pid; #modify
worker_rlimit_nofile 51200;
events {
use epoll;
worker_connections 51200;
multi_accept on;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
client_max_body_size 100m; #add
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 120; #65;
#gzip on;
#add
##########################vhost#####################################
include vhost/*.conf;
}
daemon off;
PHP
1
https://gitee.com/ccccccchu/nginx-php7-composer.git
git@gitee.com:ccccccchu/nginx-php7-composer.git
ccccccchu
nginx-php7-composer
nginx-php7-composer
master

搜索帮助