9 Star 16 Fork 13

batcom哥哥 / phpenv

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
nginx.conf 681 Bytes
一键复制 编辑 原始数据 按行查看 历史
xuheng 提交于 2015-08-03 10:50 . 云雀拿奖
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/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 /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 2;
client_max_body_size 100m;
#gzip on;
include /etc/nginx/conf.d/*.conf;
}
daemon off;
PHP
1
https://gitee.com/batcom/phpenv.git
git@gitee.com:batcom/phpenv.git
batcom
phpenv
phpenv
master

搜索帮助